JavaScript 错误:swfobject.js 中的 n 为 null

发布于 2024-11-05 05:44:37 字数 254 浏览 0 评论 0原文

当我尝试访问特定页面时,我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心头的小情儿 2024-11-12 05:44:37

您的问题可能是代码正在尝试访问尚未加载的 HTML 元素。
要解决此问题,请尝试将出现错误的代码包装在 jquery ready 块中(如果您使用的是 jQuery:

$(document).ready(function () { 
//Code that uses SWF/MicrosoftAjax here
});

或者如果您没有使用 jQuery):

window.onload=function() // fixed windows to window
{
  //Code that uses SWF/MicrosoftAjax here
}

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:

$(document).ready(function () { 
//Code that uses SWF/MicrosoftAjax here
});

or if you are not using jQuery:

window.onload=function() // fixed windows to window
{
  //Code that uses SWF/MicrosoftAjax here
}
剩余の解释 2024-11-12 05:44:37

使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文