0

如何在 JavaScript 中将变量放入字符串中?

例子:

$('#contactForm').animate({"marginLeft": "+=680px"}, "slow");

我想在变量中使用而不是680px,有没有办法做到这一点?

4

4 回答 4

3

与大多数没有信号的语言一样,您无法执行插值,您必须连接多个字符串。

"foo" + "bar" + "baz"
"foo" + string_var + "baz"
"+=" + string_var + "px"
于 2012-05-10T16:06:34.400 回答
1
var size = "680px";
$('#contactForm').animate({"marginLeft": "+="+size}, "slow");
于 2012-05-10T16:08:04.427 回答
0

您可以使用+运算符将​​变量中的值连接到"+="字符串:

$('#contactForm').animate({"marginLeft": "+=" + size}, "slow");
于 2012-05-10T16:06:52.073 回答
0
var theWidth = "680px"
$('#contactForm').animate({marginLeft: "+=" + theWidth}, "slow");
于 2012-05-10T16:07:21.653 回答