-3

我试图让这个工作,在这里找到:Horizo​​ntal scrolling div using buttons

但我遇到了一个错误;我的代码中有意外的标记,我无法弄清楚我错过了什么。

      $('#left-button').click(function {
         $('#productcontainer').animate(
           marginLeft: +="200px"
           , "fast");
      });

感谢您的提醒!

4

2 回答 2

0

尝试像这样修复您的代码:

查询

$('#left-button').click(function() {
    $('#productcontainer').animate({
        marginLeft : "+=200px"
    }, "fast");
});

请注意对代码的调整!

检查这个小提琴

于 2012-05-02T23:12:33.337 回答
0

如果您查看链接到的内容,您会发现您缺少{}for animate 方法。

.animate({ parma1, param2, etc })
于 2012-05-02T23:14:06.197 回答