Posted in Javascript onJune 06, 2015
这种方法将两个或多个字符串,并返回一个新的单字符串。
语法
string.concat(string2, string3[, ..., stringN]);
下面是参数的详细信息:
- string2...stringN : 这些是要连接字符串。
返回值:
返回一个连接字符串。
例子:
<html> <head> <title>JavaScript String concat() Method</title> </head> <body> <script type="text/javascript"> var str1 = new String( "This is string one" ); var str2 = new String( "This is string two" ); var str3 = str1.concat( str2 ); document.write("Concatenated String :" + str3); </script> </body> </html>
这将产生以下结果:
Concatenated String :This is string oneThis is string two.
JavaScript中使用concat()方法拼接字符串的教程
- Author -
goldensun声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@