如何在 JavaScript 中将变量放入字符串中?
例子:
$('#contactForm').animate({"marginLeft": "+=680px"}, "slow");
我想在变量中使用而不是680px
,有没有办法做到这一点?
如何在 JavaScript 中将变量放入字符串中?
例子:
$('#contactForm').animate({"marginLeft": "+=680px"}, "slow");
我想在变量中使用而不是680px
,有没有办法做到这一点?
与大多数没有信号的语言一样,您无法执行插值,您必须连接多个字符串。
"foo" + "bar" + "baz"
"foo" + string_var + "baz"
"+=" + string_var + "px"
var size = "680px";
$('#contactForm').animate({"marginLeft": "+="+size}, "slow");
您可以使用+
运算符将变量中的值连接到"+="
字符串:
$('#contactForm').animate({"marginLeft": "+=" + size}, "slow");
var theWidth = "680px"
$('#contactForm').animate({marginLeft: "+=" + theWidth}, "slow");