源代码 :
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>开源教程(ossoft.cn)</title> <script> function loadXMLDoc() { xmlhttp=null; if (window.XMLHttpRequest) { // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码 xmlhttp=new XMLHttpRequest(); } else { // IE6, IE5 浏览器执行代码 xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); } if (xmlhttp!=null) { xmlhttp.open("GET","xmlhttp_info.txt",false); xmlhttp.send(); document.getElementById("myDiv").innerHTML=xmlhttp.responseText; } else { alert("您的浏览器不支持 XMLHTTP。"); } } </script> </head> <body> <h2>使用 XMLHttpRequest 对象</h2> <div id="myDiv"></div> <button type="button" onclick="loadXMLDoc()">修改内容</button> </body> </html>
运行结果