JavaScript 参考手册
JavaScript 运算符
实例 »
源代码:
点击运行 »
<p> + 号运算符用于连接字符串。</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <script> function myFunction() { var text1 = "Good "; var text2 = "Morning"; var text3 = text1 + text2; document.getElementById("demo").innerHTML = text3; } </script>
运行结果:
点击运行 »