这种方法将两个或多个字符串,并返回一个新的单字符串。
语法
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.
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
桃源资源网 Design By www.nqtax.com
暂无“JavaScript中使用concat()方法拼接字符串的教程”评论...