我尝试在GM_xmlhttpRequest中使用synchronous as作为一个http请求,但似乎不起作用。
这是怎么回事? 我的代码:GM_xmlhttpRequest({
method: "GET",
url: "http://www.google.com/",
synchronous:false,
onload: function(xhr)
{
if(xhr.readyState == 4) {
r = xhr.responseText;
}
}
});
提前致谢!