我在网上看到document.clear();清空文档的意思,现在浏览器不支持;应改成:document.write("");document.close();于是我这样写了:<html><head><script type="text/javascript">document.write("");document.close();</script></head><body><h1>fffff</h1></body></html>为什么不能清空啊?刚接触,小菜,高手来帮解决一下啊!
2 回答
缥缈止盈
TA贡献2041条经验 获得超4个赞
这段script脚本没执行吧。
你应该写一个方法function clearText()
{
document.write("");
document.close();
}
然后在<body onload="javascript:clearText();"><h1>ffff</h1></body>
示例如下:
<html>
<head>
<script type="text/javascript">
function clearText()
{
document.write("");
document.close();
}
</script>
</head>
<body onload="javascript:clearText();">
<h1>fffff</h1>
</body>
</html>
添加回答
举报
0/150
提交
取消