在看w3school的JavaScript教程时,关于文档输出流中有这么一句话:绝不要在文档加载之后使用 document.write()。这会覆盖该文档。
不太明白什么意思,找了一个例子:
<!DOCTYPE html> <html> <body> <p>点击按钮就可以执行 <em>displayDate()</em>函数。</p> <button onclick = "displayDate()">点击这里</button> <script> function displayDate() { document.write("覆盖页面"); } </script> </body> </html>
初始页面:
点击后:
原文地址:https://www.cnblogs.com/zrmw/p/10374609.html
时间: 2024-11-07 08:12:03