我有这个简单的脚本:
ids="22656"
url = "http://api.stackoverflow.com/1.0/users/"+ids+"/timeline";
console.log( url );
xmlhttp = new XMLHttpRequest();
xmlhttp.open(“GET”, url ,true);
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4) {
console.log( xmlhttp.responseText );
}
xmlhttp.send( null );
};
但我不太明白我为什么会这样做:
Uncaught SyntaxError: Unexpected token ILLEGAL
有人可以对此有所了解吗?
答案 0 :(得分:10)
GET周围的报价不合适。您必须对字符串使用标准的单引号或双引号。