本文介绍了jQuery .find在Safari中不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这在Firefox和Chrome中正常运行.但是为什么不在Safari中呢?
this works fine in Firefox and Chrome. But why not in Safari?
$('.bxslider li .image').each(function() {
$(this).width($(this).find('img').width());
});
Safari中的结果为style="width: 0px; "
.还尝试了$(document).ready,没有更改.
The result in Safari is style="width: 0px; "
.Also tried $(document).ready, no change.
感谢您的帮助!
推荐答案
如已建议的,在加载所有图像后,使用window.load()
处理程序运行代码.
As already suggested use the window.load()
handler to run the code after all the images are loaded.
或使用
jQuery(function ($) {
$('.bxslider li .image img').load(function () {
$(this).closest('.image').width(this.width)
}).filter(function () {
return this.complete;
}).trigger('load')
})
这篇关于jQuery .find在Safari中不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!