dom_6 windows对象

2018-11-23  本文已影响0人  basicGeek
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<script>

    //window是bom的顶级对象。通常情况下,可以省略
//    window.alert(1);
//    alert(2);
//    prompt();
//    confirm();


//    //成员变量也是window的一个属性而已
   var aaa = 1;
   alert(aaa);
   alert(window.aaa);
   alert(aaa === window.aaa);

    //自定义函数也是window的一个方法
    // function fn(){
    //     console.log(1);
    //     console.log(1);
    //     console.log(1);
    //     console.log(1);
    // }
    //
    // console.log(window.fn);


</script>
</body>
</html>
windows对象
上一篇 下一篇

猜你喜欢

热点阅读