我的GM_xmlhttpReqeust
Greasemonkey 脚本中有如下功能设置(简化版)。
GM_xmlhttpRequest({
synchronous: false,
method: "HEAD",
url: "http://www.example1.com",
onload: function(response){console.debug(url);},
});
GM_xmlhttpReqeust
在我的代码中以异步模式调用。访问后,
http://www.example1.com
是否302 重定向到http://www.example2.com
我想在回调函数中访问原始
url
参数 (http://www.example1.com
)的值。onload
根据
GM_xmlhttpReqeust
文档,http://www.example2.com
可以在response.finalUrl
内部onload
回调中找到。
有人可以指点我正确的 Greasemonkey/JavaScript 方式吗?