onreadystatechange()事件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了onreadystatechange()事件相关的知识,希望对你有一定的参考价值。
onreadystatechange():
存储函数(或函数名),当 readyState 改变时,就会触发 onreadystatechange() 事件。
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerhtml=xmlhttp.responseText;
}
}
readyState:存储XMLHttpRequest状态,从0到4
注:4常用,代表请求已经完成,且响应已经就绪
status:Http请求状态
注:常用200:代表服务器成功接受了客户端请求
404:客户端错误,例如请求页面不存在
以上是关于onreadystatechange()事件的主要内容,如果未能解决你的问题,请参考以下文章
js中 onreadystatechange 和 onload的区别