我写了一个jquery代码,当我在IE 7中测试页面时,我发现了这个错误
无法获取显示属性。参数无效。
我的代码:
var $insert = $(item).css({ height: 0, display:'' }).prependTo($list);
$insert.animate({ height: 35 }, 600).animate({ display: '' }, 600);
if ($list.children().length > 8) {
$list.find('> li:last').animate({ filter: alpha(opacity = 50) }, 600).remove();
}
答案 0 :(得分:1)
跳出来的东西是''不是显示属性的有效值。