我目前正在学习一些JavaScript并且有一个问题。
在PHP中,我习惯用一个简单的点将文本和字符串绑定在一起:
echo "Text" . $String . "anotherText" . $anotherString
这在JavaScript中可行吗? (不是回声,而是字符串和文本的绑定。)
答案 0 :(得分:3)
+
is the concatenation operator in JavaScript:
"Text" + somestring + "anotherText" + anotherString;
答案 1 :(得分:1)
是的,请添加:
'Text' + str + 'anotherText' + anotherString;
答案 2 :(得分:1)
在JavaScript中+
代替.
示例1:
document.write("Text" + somestring + "anotherText" + anotherString);
示例2:
alert("Text" + somestring + "anotherText" + anotherString);
示例3:
var john = "Text" + somestring + "anotherText" + anotherString;