safari 浏览器上未调用就绪函数
为什么在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的页面在框架或 iframe 内运行,您还需要在页面上引用 jquery 库,因为您不会继承它来自父页面。
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.