我为一个小项目开发了一个小幻灯片,效果很好。在 Google Chrome、Opera、Friefox 和 IE 9 中。但在 IE 8 和 IE 7 中它不起作用。
我检测到问题 - 问题是 IE 7 和 IE 8 在 dom 中找不到元素。
这里是:
window.alert(thisWrapper.find('img').length); // returns 4 in all browser - in IE7 and IE8 it returns 0
thisWrapper.find('img').each(function(){
// do something with it
});
我在典型的 dom-check 中启动了该功能:
jQuery(document).ready(function(){ /* start sldier here */});
任何解决方案为什么它不会像在其他浏览器中一样工作?
编辑:
thisWrapper 包含如下内容: jQuery('#slider')