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