这是我昨天问的一个问题的后续。
我有一个用户脚本(有点像 GreaseMonkey 脚本,但适用于 Chrome)。
这个想法是在页面上添加一个文本框和一个按钮。然后,当用户单击按钮时,它会启动一个执行操作的函数。所以我将文本框、按钮和函数注入到页面中,但是当用户单击按钮时,Chrome 控制台会告诉我“未捕获的 TypeError:对象不是函数”。所以很明显它没有看到我刚刚注入的函数,它是在onclick
按钮的事件中指定的。
所以我有这样的代码:
initialize();
function initialize() {
var dropDown = document.getElementById("tstGlobalNavigation_ddlChooseProject");
// add a textbox
dropDown.innerHTML = dropDown.innerHTML + " <input type='text' name='txtSearch' style='position:absolute;top:8px;left:800px;width:50px' >";
// add a button
dropDown.innerHTML = dropDown.innerHTML + " <input type='button' name='btnSearch' value='Go' onclick='fn()' style='position:absolute;top:8px;left:860px;width:35px'>";
addScript("var obj = document.getElementById('txtSearch'); "
+ "if (obj != null) { "
+ " var incidentId = document.getElementById('txtSearch').value; "
+ " var currentURL = location.href; "
+ " var splitResult = currentURL.split('/'); "
+ " var projectId = splitResult[4]; "
+ " location.href = 'http://dev.myApp.com/ProductTeam/' + projectId + '/Incident/' + incidentId + '.aspx'; "
+ " }"
, "fn");
}
function addScript(contents, id) {
var head, script;
head = document.getElementsByTagName('head')[0];
script = document.getElementById(id);
if(script != undefined) {
head.removeChild(script);
}
script = document.createElement('script');
script.type = 'text/javascript';
script.id = id;
script.innerHTML = contents;
head.appendChild(script);
}
我在这里想念什么?