现场有这样的代码(它的网站在局域网上)
<script language="JavaScript" type="text/javascript">
alert("ble");
</script>
我尝试使用 GM 禁用该警报。我试图这样做
unsafeWindow.alert=function() {};
但我看到警报并收到此错误
Error: uncaught exception: [Exception... "Component is not available" nsresult: "0x80040111 (NS_ERROR_NOT_AVAILABLE)" location: "JS frame :: file:///C:/Documents%20and%20Settings/arokitnicki/Dane%20aplikacji/Mozilla/Firefox/Profiles/sm4bsods.default/extensions/%7Be4a8a97b-f2ed-450b-b12d-ee082ba24781%7D/components/greasemonkey.js :: anonymous :: line 377" data: no]
如何禁用该警报?
PS 这不是一个 javascript问题,而是一个Greasemonkey问题。
编辑:
它公司的网站,所以我不能粘贴真实的代码
<head>
<script>
dojo.require("dojo.back");
dojo.back.init();
</script>
</head>
<body onload="someMethod()">
<iframe></iframe>
<script>
alert("bla");
</script>
</body>
header 中还有一些脚本和 CSS 声明。