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> |