xhr.onreadystatechange = function()
{
if(xhr.readyState == 4 && xhr.status == 200)
{
var data = xhr.responseText;//2.判断状态,接收数据(字符串形式),后续操作
}
}
//xhr.open(\'请求方式\', \'请求地址\', TRUE);//3.异步传输连接
//xhr.send([data]);//4.发送请求
xhr.open(\'GET\', \'demo.php?name=weichen&sex=0\', TRUE);
xhr.send();
/*
xhr.open(\'POST\', \'demo.php\', TRUE);
xhr.setResponseHeader(\'Content-Type\', \'application/x-www-form-urlencoded\');
xhr.send(\'name=weichen&sex=0\');
*/
本文地址:https://www.stayed.cn/item/2752
转载请注明出处。
本站部分内容来源于网络,如侵犯到您的权益,请 联系我