即使使用引用,GreaseMonkey setTimeout也不起作用(FF4)

时间:2011-04-23 20:09:57

标签: javascript greasemonkey

我在我的UserScript文件中有这个:

window.testMyFunctionBLah = function() {
    alert('hey');
}

window.setTimeout( testMyFunctionBLah, 1000 );

alert('hi');

我看到hi,但不是hey,我无法理解。我正在使用Firefox 4并且没有安装NoScript。想法?

2 个答案:

答案 0 :(得分:2)

这似乎是FF 4.0中的一个错误。

请参阅"alert + setTimeout = failure"

答案 1 :(得分:0)

这个工作在我的补丁之后很好 对你有帮助。

setTimeout not working in Greasemonkey user script when JS disabled in browser