原声JS网络请求
Posted 向往的人生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了原声JS网络请求相关的知识,希望对你有一定的参考价值。
//创建xhr对象
var xhr = new XMLHttpRequest();
//异步接受响应
xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
if (xhr.status == 200) {
//实际操作
// alert(xhr.responseText);
$("#Container").html(xhr.responseText);
}
}
}
//发送请求
xhr.open(‘post‘, ‘/Role/TeaManagePageView‘, true);
xhr.send({ Page: 1 });
以上是关于原声JS网络请求的主要内容,如果未能解决你的问题,请参考以下文章
cocos2d-js网络教程篇cocos2d-js http网络请求