你好我开发了一个chrome扩展。 在我的js脚本中,我想创建一个XMLHttpRequest。 php文件由脚本读取(我在我的wamp的日志中看到它),但xhr.status值为0,responseText为空。
var xhr = new XMLHttpRequest();
xhr.open("GET", 'http://localhost/ss/test.php?tt='+tt, true);
xhr.responseType = 'text';
xhr.onreadystatechange = function() {
if (xhr.readyState == XMLHttpRequest.DONE) {
if(xhr.responseText=='a'){
alert('a');
}else if(xhr.responseText=='b'){
alert('b');
}else{
alert(xhr.status);
}
}else{
alert(xhr.responseText);
}
}
xhr.send();
在php文件中我刚写了echo“a”;