我在许多在线教程中看到过简单的示例 Ajax 源代码。我想知道的是使用示例中的源代码是否完全可以?
进入现实世界的应用程序的代码是否还有其他内容要添加?
为了使应用程序更加健壮和安全,需要采取哪些步骤?
这是我从网上获得的示例源代码:
function getChats() {
xmlHttp=GetXmlHttpObject();
if (xmlHttp==null) {
return;
}
var url="getchat.php?latest="+latest;
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}
function GetXmlHttpObject() {
var xmlHttp=null;
try {
xmlHttp=new XMLHttpRequest();
} catch (e) {
try {
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}