- 论坛徽章:
- 0
|
AJAX高手请求帮忙,我在学习AJAX,但是即使找着别人的代码改,还是不行。我把我的代码贴出来大家帮我看看。另外,我在firefox里调试时看到onreadystatechange事件总是没有被自定义的函数替代!我用的浏览器有IE和firefox。谢谢先。
- <html>
- <head>
- <title>test AJAX</title>
- <script>
- function createXMLHttpRequest()
- {
- if (window.ActiveXObject)
- {
- var xmlHttpObj = new ActiveXObject("Microsoft.XMLHTTP");
- }
- else if (window.XMLHttpRequest)
- {
- var xmlHttpObj = new XMLHttpRequest();
- }
- return xmlHttpObj;
- }
- function test1()
- {
- xmlHttp_1 = createXMLHttpRequest();
- xmlHttp_1.onreadystatechange = handleStateChange1;
- // alert(xmlHttp_1.onreadystatechange);
- url = "http://www.mydigitallife.org.uk/crawl.php?url=http%3A%2F%2Fwww.mydigitallife.org.uk";
- xmlHttp_1.open("GET", url, false);
- xmlHttp_1.send(null);
- // document.getElementById('search_table').innerHTML ="xmlHttp_1.responseText;
- }
- function handleStateChange1()
- {
- if (xmlHttp_1.onreadyState == 4)
- {
- alert(xmlHttp_1.responseText);
- document.getElementById('search_table').innerHTML =xmlHttp_1.responseText;
- alert(document.getElementById('search_table').innerHTML);
- }
-
- }
- </script>
- <body onload="test1();">
- <table><tr><td name="search_table" id="search_table"></td></tr></table>
- </body></html>
复制代码 |
|