为什么这段代码不能在keydown上滚动到定位类?

时间:2012-01-11 04:56:57

标签: javascript jquery css

$(document).bind("keydown",function(e){
    e.preventDefault();
    $("#show-all-win").animate({
       scrollLeft: $(".key_"+e.keyCode).position().left
    }, 800);
}) 

1 个答案:

答案 0 :(得分:1)

试试这个

$(document).bind("keydown",function(e){
   e.preventDefault();
   $("#show-all-win").animate({
     "scrollLeft": "-=" + $(".key_"+e.keyCode).position().left + "px"
   }, 800);
});

希望这有帮助