/[suikacvs]/www/test/html/script/xmlhttp/opera8-abone.html
Suika

Contents of /www/test/html/script/xmlhttp/opera8-abone.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations) (download) (as text)
Mon Nov 7 03:51:46 2005 UTC (19 years, 8 months ago) by wakaba
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/html
New

1 wakaba 1.1 <html lang="ja" xmlns="http://www.w3.org/1999/xhtml">
2     <head>
3     <title>XMLHttpRequest でよくわからないけど Opera 8 が落ちるテスト</title>
4     </head>
5     <body>
6     <h1>XMLHttpRequest でよくわからないけど Opera 8 が落ちるテスト</h1>
7     <p onclick=''></p>
8    
9     <p>
10     <button onclick='
11     var htreq = window.XMLHttpRequest
12     ? new XMLHttpRequest ()
13     : new ActiveXObject ("Microsoft.XMLHTTP");
14     htreq.onreadystatechange = function (e) {
15     if (htreq.readyState == 4) {
16     if (htreq.status < 400) {
17     document.getElementById ("result").value = htreq.responseText;
18     } else {
19     window.status = htreq.status + " " + htreq.statusText;
20     }
21     }
22     };
23     htreq.open ("GET", "opera8-abone", true);
24     htreq.send (null);
25     '>
26     読込み
27     </button>
28     </p>
29    
30     <p>
31     <label>読込み結果<br />
32     <textarea id="result" rows="10" cols="50"></textarea></label>
33     </p>
34    
35     <p><a href="http://suika.fam.cx/gate/2005/sw/XMLHttpRequest#anchor-6">解説</a></p>
36    
37     </body>
38     </html>

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24