标签: jquery jquery-plugins
我的代码位于此处
http://jsfiddle.net/jostster/5XAUb/
这适用于Safari / FF(大多数情况下,FF上有fadeIn的小错误),但不适用于IE。它与使用$(this).parent().attr('class').split(' ').splice(-1).toString();。
$(this).parent().attr('class').split(' ').splice(-1).toString();
基本上它无法在IE7或IE8中获取elementType(尚未测试IE9),但在FF和Safari中工作正常。
有谁知道为什么IE似乎不喜欢这个jQuery?
答案 0 :(得分:3)
IE和Opera需要splice的第二个参数,这适用于splice。
IE
Opera
splice
<强> Splice Usage Reference 强>