当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript concat()方法
The concat() method is used to join two or more strings.
concat()方法可用来将两个或两个以上的字符串组合到一起
stringObject.concat(stringX,stringX,...,stringX) |
Parameter 参数 | Description 描述 |
---|---|
stringX | Required. One or more string objects to be joined to a string 必选。需要组合的一或多个对象 |
In the following example we will create two strings and show them as one using concat():
下面我们将使用concat()方法将两个字符串组合到一起:
<script type="text/javascript"> var str1="Hello " </script> |
The output of the code above will be:
输出结果为:
Hello world! |
concat()
How to use concat() to join two strings.
如何concat()方法来将两个或两个以上的字符串组合到一起