JavaScript 错误:swfobject.js 中的 n 为 null
当我尝试访问特定页面时,我的 Web 应用程序在 Firefox 浏览器中呈现“n is null”Javascript 错误。此错误源自 swfobject.js 文件。
另外,当我尝试访问特定页面时,我在 Firefox 浏览器中收到另一个 Javascript 错误“a is null”。此错误源自 MicrosoftAjax.js 文件。
任何帮助将不胜感激。
谢谢。
My Web application renders me "n is null" Javascript error in firefox browser when i try to access a particular page. This error originates in swfobject.js file.
Also i get another Javascript error "a is null" in firefox browser when i try to access a particular page.This error originates in MicrosoftAjax.js file.
Any help would be deeply appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的问题可能是代码正在尝试访问尚未加载的 HTML 元素。
要解决此问题,请尝试将出现错误的代码包装在 jquery
ready
块中(如果您使用的是 jQuery:或者如果您没有使用 jQuery):
Your problem may be that the code is trying to access an HTML element that has not loaded yet.
To resolve this try wrap the code that is getting the errors in a jquery
ready
block if you are using jQuery:or if you are not using jQuery:
使用 firebug 来查明问题。
99%,问题的根源不是
swfobject.js
,而是在它之前加载的某个脚本中。Use firebug to pinpoint the problem.
99%, the problem's origin is not
swfobject.js
but in some script that's loaded before it.