javascript-this.each和IE6-7
作者:互联网
我已经为项目编写了jQuery插件,它在IE6-7以外的所有浏览器中均能完美运行.
我发现了问题所在,它在以下行中:
return this.each(function(index) { my_code })
.each在IE6-7中无法正常工作.此错误已在最新的jQuery版本中修复,但我与1.4.2集成在一起并且无法更新.我该如何重写?显然我做不到
return for ( var index=0; i<this.length; i++ ) {
或这个
for ( var index=0; i<this.length; i++ ) { return
但应该有一些办法.
解决方法:
您确定了当前jQuery修复的IE 6-7问题.如何在自己的脚本中重写jQuery.each函数
http://jsfiddle.net/pxfunc/7q94J/
jQuery.extend({
each: [1.6.2 each function here]
});
标签:jquery-plugins,javascript,jquery 来源: https://codeday.me/bug/20191208/2089387.html