JS里面的document.write()

JS当中的document.write()方法不能在页面加载之后再来调用,否则整个文档都会丢失。

例如:点击按钮之后,文档丢失,相当于把以前的内容给覆盖了。

<!DOCTYPE html>
<html>
<body>

<h1>My First Web Page</h1>

<p>My First Paragraph.</p>

<button onclick="myFunction()">点击这里</button>

<script>
function myFunction()
{
document.write("糟糕!文档消失了。");
}
</script>

</body>
</html>

你可能感兴趣的:(document)