例如

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>覆盖文档</title>
</head>
<body>
    <script>
        document.write("首先输出");
    </script>
    <p>请点击这</p>
    <br/>
    <input type="button" onclick="test()" value="调用函数"/>
    <script>
        function test(){
            document.write("覆盖输出:");
            document.write(Date());
        }
    </script>

</body>
</html>

 

posted on 2019-05-09 14:22  许天天  阅读(944)  评论(0编辑  收藏  举报