我是stackoverflow的新手:),我试图在这里搜索问题但是没有找到确切的问题。
我需要向Google搜索页面添加一个脚本,该页面在首次尝试时工作正常。
例如,如果我转到Chrome并在google.com上搜索任何内容,那么脚本运行正常。
但是在搜索页面上,即在此page上,如果我尝试搜索任何新结果,则会显示上次搜索结果html。
我的代码:
chrome.tabs.onUpdated.addListener(function (tabid, info, tab) {
if (info.status == "complete") {
chrome.tabs.executeScript(tabid, {file: "code.js"});
}
});
我的code.js
$(function () {
var htm = $("#rcnt #center_col").html();
console.log(htm);
});
如何解决这个问题?