<script lanuage = "javaScript">
//創(chuàng)建對(duì)象
function createXMLHttpRequest(){
if(window.ActiveXObject){
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
else if(window.XMLHttpRequest){
xmlHttp = new XMLHttpRequest();
}
}
//前臺(tái)界面事件調(diào)用的函數(shù)
function checkName(){
createXMLHttpRequest();
xmlHttp.onreadystatechange = handleStateChange;
var sql = "UserReg.aspx?";
xmlHttp.open("GET",sql,true);
xmlHttp.send(null);
}
//和服務(wù)器交互期間執(zhí)行的函數(shù)
function handleStateChange(){
if(xmlHttp.readyState == 4){
if(xmlHttp.status == 200){
document.getElementById("divx").innerHTML = xmlHttp.responseText;
}
}
}
<script>
posted on 2009-04-28 07:53
Werther 閱讀(444)
評(píng)論(1) 編輯 收藏 所屬分類:
13.AJAX