-1

我尝试在 GM_xmlhttpRequest 中发出一个同步为 false 的 http 请求,但似乎不起作用。

这是怎么做的?我的代码:

GM_xmlhttpRequest({
        method: "GET",
        url: "http://www.google.com/",
        synchronous:false,
        onload: function(xhr) 
            {
                if(xhr.readyState == 4) {
                    r = xhr.responseText;
                }   
            }

    });

提前致谢!

4

1 回答 1

1

GM_xmlhttpRequest 默认是异步的。

http://wiki.greasespot.net/GM_xmlhttpRequest

于 2011-12-28T14:38:45.687 回答