眼眸繁星
2021-10-27 23:19:48
我在網(wǎng)上看到document.clear();清空文檔的意思,現(xiàn)在瀏覽器不支持;應(yīng)改成:document.write("");document.close();于是我這樣寫了:<html><head><script type="text/javascript">document.write("");document.close();</script></head><body><h1>fffff</h1></body></html>為什么不能清空啊?剛接觸,小菜,高手來幫解決一下??!
2 回答

縹緲止盈
TA貢獻(xiàn)2041條經(jīng)驗(yàn) 獲得超4個贊
這段script腳本沒執(zhí)行吧。
你應(yīng)該寫一個方法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
提交
取消