首先是数据请求页面
这里一个函数,将数据提交到receive.asp来处理
以下是引用片段: function SendAJAX(){ if (document.ChatForm.ChatText1.value != ""){ var DataToSend = "ChatText1=" + document.ChatForm.ChatText1.value; var xmlhttp = false; var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); xmlhttp.open("POST","receive.asp",true); xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xmlhttp.send(DataToSend); xmlhttp.onreadystatechange=function(){ if (xmlhttp.readyState == 4) { if (xmlhttp.status == 200) { document.getElementById('ChatBody').innerHTML = xmlhttp.responseText; } else { alert("您所请求的页面有异常。"); } } } } } |
页面中需要无刷更新的地方,写上
以下是引用片段: <div class="ChatBody" id="ChatBody">
</div>
|