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