原生JS的HTTP请求
Posted 彭蒙善
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了原生JS的HTTP请求相关的知识,希望对你有一定的参考价值。
ar xhr = new XMLHttpRequest();
xhr.onreadystatechange = function(){
if( xhr.readyState == 4){
if( xhr.status >= 200 && xhr.status < 300 || xhr.status == 304){
info.innerhtml = xhr.responseText;
}
}
};
xhr.open("get","test.txt",true);
xhr.send(null);
!--EndFragment-->!--?xml:namespace>以上是关于原生JS的HTTP请求的主要内容,如果未能解决你的问题,请参考以下文章