Firefox 3.5.x 中的 document.readyState

发布于 2024-10-06 15:55:05 字数 424 浏览 6 评论 0原文

我在一个网站上放置了此代码以避免错误:

$(function() {
  var fnDocumentReady = function() {
    if(document.readyState != "complete") {
      setTimeout(function () { fnDocumentReady(); }, 300);
      return;
    }

    //do stuff
  };

  fnDocumentReady();
});

但我最近发现在 FF 3.5 中不会执行“do stuff”所在的代码。经过分析和调试,我发现FF中的document.readySate始终是undefined。有什么办法可以用其他类似的东西来代替它吗?

谢谢!

I've a site where I've putten this code to avoid errors:

$(function() {
  var fnDocumentReady = function() {
    if(document.readyState != "complete") {
      setTimeout(function () { fnDocumentReady(); }, 300);
      return;
    }

    //do stuff
  };

  fnDocumentReady();
});

But I've recently discovered that in FF 3.5 does not execute the code where the "do stuff" is. After analyzing and debbuging I realized that document.readySate in FF is always undefined. Is there any way to replace this for something else that works similar??

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

坠似风落 2024-10-13 15:55:05

要回答为什么?部分:document.readyState< /code> 是在 Firefox 3.6 中添加的


这里不需要额外的检查,jQuery 已经抽象化检测 DOM 何时准备好,您所需要的是:

$(function() {
  //do stuff
});

如果您希望在代码运行之前加载所有图像,只需使用 window.onload相反,像这样:

$(window).load(function() {
  //do stuff
});

To answer the why? part: document.readyState was added in Firefox 3.6.


There's no need here for the extra check, jQuery already abstracts detecting when the DOM is ready, all you need is:

$(function() {
  //do stuff
});

If you're wanting all the images loaded before your code runs, just use window.onload instead, like this:

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