我为我的朋友设计了这个网站:http://noorjamali.info/
我对这个网站有一个问题 - 为什么这些行在IE 8中不起作用?
$j('#lveis-wrapper_3').animate({
opacity: 0.0,
height : 740
}, 1200, function () {
// Animation complete.
)};
这是jQuery - 所以为什么在IE 8中不起作用?
什么是替代品?
提前致谢
答案 0 :(得分:0)
如果你的代码是正确的: -
IE兼容性存在一些问题 给这个元代码
<meta http-equiv="X-UA-Compatible" content="IE=8" />
<meta http-equiv="X-UA-Compatible" content="IE=7" />
答案 1 :(得分:0)
为什么你不能尝试http://jsfiddle.net/9FBrx/
$('#lveis-wrapper_3').animate({
height : '300px',
opacity:'0'
}, 1200, function () {
// Animation complete.
})