在 Chrome 中,调用后会有延迟location.assign
(它们可能在单独的线程中运行),因此当触发并且整个代码抛出异常tutu
时,没有定义 var 。alert()
(另外,正如 trinity 所说,alert
需要以 . 开头javascript:
。)
您可以像这样使用计时器:
location.assign("javascript:var tutu = 'oscar';");
setTimeout (
function () {location.assign("javascript:console.log('1:' + tutu);"); }
, 666
);
但是,我想你会同意这是一个麻烦的地方。
除了最短/最简单的代码之外,尝试使用页面范围的 javascriptlocation.assign
会变得很麻烦。
使用脚本注入设置、重置和/或运行大量页面范围的 javascript :
function setPageScopeGlobals () {
window.tutu = 'Oscar';
window.globVar2 = 'Wilde';
window.globVar3 = 'Boyo';
alert ('1:' + tutu);
window.useGlobalVar = function () {
console.log ("globVar2: ", globVar2);
};
}
//-- Set globals
addJS_Node (null, null, setPageScopeGlobals);
//-- Call a global function
addJS_Node ("useGlobalVar();");
//-- Standard-ish utility function:
function addJS_Node (text, s_URL, funcToRun, runOnLoad) {
var D = document;
var scriptNode = D.createElement ('script');
if (runOnLoad) {
scriptNode.addEventListener ("load", runOnLoad, false);
}
scriptNode.type = "text/javascript";
if (text) scriptNode.textContent = text;
if (s_URL) scriptNode.src = s_URL;
if (funcToRun) scriptNode.textContent = '(' + funcToRun.toString() + ')()';
var targ = D.getElementsByTagName ('head')[0] || D.body || D.documentElement;
targ.appendChild (scriptNode);
}