Ajax页面局部异步刷新技术

时间:2015-04-02 05:51:29
【文件属性】:

文件名称:Ajax页面局部异步刷新技术

文件大小:1KB

文件格式:TXT

更新时间:2015-04-02 05:51:29

xmlhttprequest

创建XMLHttpRequest对象var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); xmlhttp.open("get", "GetDate.ashx?id=" + encodeURI("中国") + "&ts;", false); xmlhttp.onreadystatechange = function () { if (xmlhttp.readyState == 4) { if (xmlhttp.status == 200) document.getElementById("Text1").value = xmlhttp.responseText;


网友评论