JavaScript getelementbyid 问题
当我们在 JS 中使用 getelementbyid 时,浏览器会要求允许或阻止该脚本,是否有一段脚本可以自动允许或避免该脚本,或者是否有替代方案
When we use getelementbyid in JS the browser ask to allow or block the script, is there a piece of script to automatically allow that or avoid that or is there an alternative for that
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果“浏览器”是 IE 并且您在本地查看文件,这是因为 IE 默认情况下会阻止本地 HTML 中的 JavaScript 作为安全措施。
如果“浏览器”是 Firefox(极不可能),这是因为调用了
netscape.security.PrivilegeManager.enablePrivilege
。永远不要调用该函数。If "the browser" is IE and you are viewing the file locally, this is because IE blocks JavaScript by default in local HTML as a security measure.
If "the browser" is Firefox (very unlikely), this is because
netscape.security.PrivilegeManager.enablePrivilege
was called. Never call that function.我真的怀疑
document.getElementById("id")
会在浏览器中被阻止。一定是其他原因造成的。I really doubt that
document.getElementById("id")
will be blocked in a browser. It must be something else causing this.大概这是 IE 中的 ActiveX 警报?您能否准确确认您正在使用的浏览器和代码中出现的错误 - 即使是一个片段也应该有所帮助
presumably this is the ActiveX alert in IE? Can you confirm exactly what error in what browser and what code you are using - even a snippet should help