电脑疯子技术论坛|电脑极客社区

 找回密码
 注册

QQ登录

只需一步,快速开始

[其他实用教程] window对象 - bom的顶级对象

[复制链接]
zhaorong 发表于 2018-6-26 16:11:48 | 显示全部楼层 |阅读模式

<!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>
您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|VIP|电脑疯子技术论坛 ( Computer madman team )

GMT+8, 2025-1-23 07:27

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表