在 jquery animate 函数中使用变量时出现语法错误

发布于 2024-11-02 22:30:50 字数 579 浏览 1 评论 0原文

我不知道如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终难遇 2024-11-09 22:30:50

在这里找到工作小提琴: http://jsfiddle.net/ezmilhouse/GqXmy/1/

var left_indent = 300;
$('#trends_holder').animate({'left' : left_indent}, 300);

find working fiddle here: http://jsfiddle.net/ezmilhouse/GqXmy/1/

var left_indent = 300;
$('#trends_holder').animate({'left' : left_indent}, 300);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文