With语句

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>With语句</title>
    <script type="text/javascript">
        //使用With结构后,里面调用with中对象的方法,不需要写对象 直接写方法
        with(document){
            write("Hello<br/>")
            write("Hello1<br/>")
            write("Hello2<br/>")
            write("Hello3<br/>")
        }

    </script>
</head>
<body>

</body>
</html>

  

 

posted @ 2017-02-16 17:27  john。  阅读(150)  评论(0编辑  收藏  举报