在 jquery animate 函数中使用变量时出现语法错误
我不知道如何在 jquery 的 animate 函数中使用变量。我正在尝试这样做:
$('#trends_holder').animate({'left' : left_indent}, 300);
其中 left_indent 是我在其他地方创建的变量。我在这里做错了什么?
如果我输出这个,我会得到“invalid token”,并且输出代码如下所示:
$('#trends_holder').animate(, 300);
如果我跟踪这个:
alert (item_count + " | " + item_width + " | " + item_count * item_width);
我会得到所有这些的正确值。但是如果我给它分配一个变量,它就不起作用:
var indent_val = -(item_count * item_width);
$('#trends_holder').animate({'left' : indent_val}, 300);
I can't figure out how to use a variable in jquery's animate function. I'm trying to do this:
$('#trends_holder').animate({'left' : left_indent}, 300);
where left_indent is a variable I've created elsewhere. What am I doing wrong here?
If I output this, I get "invalid token , " and the output code looks like this:
$('#trends_holder').animate(, 300);
If I trace this:
alert (item_count + " | " + item_width + " | " + item_count * item_width);
I get a proper value for all of these. But then if I assign a variable to it, it doesn't work:
var indent_val = -(item_count * item_width);
$('#trends_holder').animate({'left' : indent_val}, 300);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里找到工作小提琴: http://jsfiddle.net/ezmilhouse/GqXmy/1/
find working fiddle here: http://jsfiddle.net/ezmilhouse/GqXmy/1/