Chrome有自己的greasemmonkey,无论如何它有很多限制。其中之一是它的xmlhttprequest不支持跨域。有什么办法能让它起作用吗?
谢谢
Chrome现在支持通过GM_xmlhttpRequest跨域请求。
下面是Greasemonkey的(Firefox) GM_xmlhttpRequest()
的文档
如果您还希望脚本对opera友好,则仍然不能使用GM_xmlhttpRequest。但是,使用YQL和jQuery,您可以这样做:
var getCrossDomain = function (url, callback, maxage) {
if (typeof (url) !== 'undefined') {
var yql = 'http://query.yahooapis.com/v1/public/yql?q=' + encodeURIComponent('select * from html where url="' + url + '"') + '&diagnostics=false&format=xml&callback=?&_maxage=';
if (typeof (maxage) === 'undefined') {
yql += '10000'; // Value is in ms
}
$.getJSON(yql, function (data) {
if (typeof (callbackX) === 'function') {
callback(data.results[0]);
}
}).fail(function (jqXHR, textStatus, errorThrown) {
// Some code here to handle a failed request
});
}
};
阅读http://www.yqlblog.net/blog/2010/03/12/avoiding-rate-limits-and-getting-banned-in-yql-and-pipes-caching-is-your-friend/获取maxage参数的信息