0
$(".down").click(function() { 
    $("#sideRight")
       .animate({top: "305"}, 350);
    });

不能在 IE9(和更早版本的 IE)上工作 如何修复?

http://goo.gl/5b82w(顶部菜单上有 div class="down"。单击此 div 必须为右栏设置动画)

4

1 回答 1

0

请测试此代码

$(function(){
   $('.down').on("click", function (e) { 
     $("#sideRight")
       .animate({top: "305"}, 350);
   });
});
于 2013-03-01T13:06:01.033 回答