safari 浏览器上未调用就绪函数

发布于 2024-10-12 09:49:54 字数 390 浏览 1 评论 0原文

为什么在safari上不调用ready,而在firefox、Intrnet explorer、chrome上调用它。 更多信息:Jquery.js 包含在父页面中,这就是我的页面中未包含的原因

$(document).ready(function () {
hasflash = detectFlash();


   alert('1');

  $("#status").css({'display':'none'});
  getresource('1','1');
  $(".step[step=1]").css({'background':'#FFF58F'});
  $("#img1,#img2,#img3,#img4,#img5,#img6,#img7,#img8").hide();

 });

Why is that ready is not called on safari ,it is being called on firefox,Intrnet explorer,chrome.
More info :Jquery.js in included in the parent page and that is the reason is not included in my page

$(document).ready(function () {
hasflash = detectFlash();


   alert('1');

  $("#status").css({'display':'none'});
  getresource('1','1');
  $(".step[step=1]").css({'background':'#FFF58F'});
  $("#img1,#img2,#img3,#img4,#img5,#img6,#img7,#img8").hide();

 });

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

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

发布评论

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

评论(1

清浅ˋ旧时光 2024-10-19 09:49:54

Jquery.js 包含在父页面中,这就是未包含在我的页面中的原因

如果您的页面在框架或 iframe 内运行,您还需要在页面上引用 jquery 库,因为您不会继承它来自父页面。

Jquery.js in included in the parent page and that is the reason is not included in my page

If your page is running inside of a frame or iframe, you will also need to reference the jquery library on your page as you won't inherit it from the parent page.

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