This only happens with IE (all versions), on line 1120 in jquery-1.2.6.js I get the following error:
Line 1120:
Invalid Property Value
js文件中的代码如下:
elem[name] = value;
它在attr(属性)内部:function(elem,name,value)
有没有人有类似的问题?
This only happens with IE (all versions), on line 1120 in jquery-1.2.6.js I get the following error:
Line 1120:
Invalid Property Value
js文件中的代码如下:
elem[name] = value;
它在attr(属性)内部:function(elem,name,value)
有没有人有类似的问题?
如果您使用无效的属性值调用jQuery.css,则可能会出现此错误,例如:
$( div.foo ).css( padding-left , NaNpx );
问题是仅限于IE,因为您可能正在尝试设置类似于“min-height”的东西,在(适当的CSS实现)浏览器(如Firefox)中存在,但在(恶魔般的)浏览器(如Internet Explorer)中不存在。我在使用jQuery自己的对话框UI函数时遇到了相同的问题。
我以前非常支持jQuery,但这真的让它难堪了。