js字符串连接

Posted 田智凯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js字符串连接相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">

</head>
<body>
字符串连接<br>
<p id="demo"></p>
<script>
var text1 = "Hello";
var text2 = "World!";
var text3 = text1.concat(" ",text2);
document.getElementById("demo").innerHTML = text3;
</script>

</body>
</html>

 

 学习网址:https://www.w3school.com.cn/js/js_string_methods.asp

以上是关于js字符串连接的主要内容,如果未能解决你的问题,请参考以下文章