码迷,mamicode.com
首页 > Web开发 > 详细

如果在文档已完成加载后执行 document.write,整个 HTML 页面将被覆盖

时间:2015-07-21 16:47:11      阅读:349      评论:0      收藏:0      [点我收藏+]

标签:

<!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.write,整个 HTML 页面将被覆盖

标签:

原文地址:http://www.cnblogs.com/geekliu/p/4664848.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!