waitForKeyElements AJAX请求无效

时间:2015-10-12 02:50:01

标签: ajax tampermonkey

我在waitForKeyElements用户脚本中使用tampermonkey函数,在向下滚动页面时,在发出AJAX请求后检查Twitter上的新推文。在初始页面加载后调用addCustomSearchResult()并抓取这些推文。

当我向下滚动页面时,在ajax调用之后加载新推文时,

addCustomSearchResult()不会运行。我做错了什么?

// @require     http://code.jquery.com/jquery-2.1.1.min.js
// @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant    GM_addStyle

waitForKeyElements("li.js-stream-item",addCustomSearchResult);
function addCustomSearchResult (tweet) {
    console.log('found new tweet');
}

0 个答案:

没有答案