问答详情
源自:2-3 JavaScript-确认(confirm 消息对话框)

点击按钮后,按钮会被document.write的内容所替换。如何不被替换,在其他地方显示?

document.write();

提问者:奋斗小牛 2015-09-19 17:23

个回答

  • 云cloud
    2015-09-19 17:44:43

    doucment.write会覆盖文档 使用innerHTML可以实现

    <script>
    window.onload=function()
    {
    var btn=document.getElementById('click');
    var p=document.getElementById('x');
    btn.onclick=function()
    {
        x.innerHTML="你好"
        }
    }
    </script>
    </head>

    <body>
    <input type="button" id="click" value="click" />
    <p id="x"></p>