是否存在等效于"字符串"的JavaScript 。 "串"用PHP?

时间:2014-04-08 00:58:47

标签: javascript php concatenation string-concatenation

我目前正在学习一些JavaScript并且有一个问题。

在PHP中,我习惯用一个简单的点将文本和字符串绑定在一起:

echo "Text" . $String . "anotherText" . $anotherString

这在JavaScript中可行吗? (不是回声,而是字符串和文本的绑定。)

3 个答案:

答案 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;