我有一个用户脚本,它通过 GM_xmlhttprequest 触发一个 ajax 调用,以加载一个简单的页面,其中包含一些文本和链接到一个名为“debug”的 div。这很好用。现在我想要通过 gm_xmlhttprequest 请求所请求文档中的每个链接。我不知道为什么我的功能不起作用
$('.ajax, .ajaxn').click(function(event) {
event.preventDefault();
var href = $(this).attr('href');
GM_xmlhttpRequest({
method: "GET",
url: href,
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
onload: function(response) {
$('#debug').html('');
$('#debug').append(response.responseText).fadeIn(5000);
}
});
});
响应内部的链接有类 ajaxn,firebug dom/html 面板显示响应实际上是插入到#debug
任何提示?