此代码是否有其他代码或更好的代码:
window.onload = refresh();
function refresh()
{
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
{
alert ("Browser does not support HTTP Request")
return
}
var url="mypage.php"
xmlHttp.onreadystatechange=stateChanged
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}
function stateChanged()
{
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{
document.getElementById("div1").innerHTML=xmlHttp.responseText;
a=setTimeout("refresh()",1000);
}
}
function GetXmlHttpObject()
{
var xmlHttp=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
// Internet Explorer
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}
我尝试了很多将它用于一个页面中的两个div ..但是它不能用于两次..只有一次,所以我想要一个更好的代码用于这个东西,并且在一个页面中工作两次或更多次,我想它就像一个带有div id参数和页面的函数..
感谢提前..
答案 0 :(得分:1)
为什么不使用一些JS框架,比如mootools或jQuery?
答案 1 :(得分:0)
你应该使用jQuery来完成工作,它有很多很棒的AJAX函数。
您可能需要的是:http://api.jquery.com/load/