javascript clear()什么意思
我在网上看到document.clear();清空文档的意思,现在浏览器不支持;应改成:document.write("");document.close();于是我这样...
我在网上看到document.clear();清空文档的意思,现在浏览器不支持;应改成:
document.write("");
document.close();
于是我这样写了:
<html>
<head>
<script type="text/javascript">
document.write("");
document.close();
</script>
</head>
<body>
<h1>fffff</h1>
</body>
</html>
为什么不能清空啊?刚接触,小菜,高手来帮解决一下啊! 展开
document.write("");
document.close();
于是我这样写了:
<html>
<head>
<script type="text/javascript">
document.write("");
document.close();
</script>
</head>
<body>
<h1>fffff</h1>
</body>
</html>
为什么不能清空啊?刚接触,小菜,高手来帮解决一下啊! 展开
展开全部
这段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>
你应该写一个方法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>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询