问答详情
源自:1-1 让你认识JS

为什么我点击按钮以后,h1和input标签都消失了,代码如下


<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">


<title>字符</title>

</head>

<body>

<h1>消失</h1>

<input type="text" id="jhl" />

<input type="button" value="确定" onclick="ceui()">

<br /><br /><br /><br /><br />

<script type="text/JavaScript">

function ceui() {

var j = document.getElementById("jhl").value;

document.write("<br />"+j.length);

}

</script>

</body>

</html>


提问者:星星3394050 2016-06-28 17:46

个回答

  • 瓜呱呱
    2016-06-28 17:59:33
    已采纳

    document.write("<br />"+j.length);这句代码

    页面加载完毕之后调用document.write的话会把文档都完全覆盖的