我有两个变量:
var a = 'aaa';
var b = 'bbb';
我想只使用一个document.write输出它们:
aaabbb
我如何在document.write中将它们联合起来?我需要像PHP一样的$。$ b。
答案 0 :(得分:3)
没有人禁止你使用+
(可用于连接字符串):)
document.write(a+b)
另一种变体是
document.write(a.concat(b))
答案 1 :(得分:0)
在JavaScript中,+
用于连接字符串;它的工作方式类似于PHP中的.
:
a + b