菜鸟教程 tryjsref_oper_string1 在线代码实例

运行 保存 全屏 右侧展示 实时查看
主题:

 <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>