欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JavaScript之window对象的属性和方法

程序员文章站 2022-05-07 20:11:14
...

window对象的属性
用法:对象名.属性名
由于window对象是顶层对象,所以可以省略

screen属性

    <script type="text/javascript">
    //screen属性
    console.log(window.screen); //返回Screen对象
    var s = window.screen;
    console.log("屏幕分辨率:" + s.width + "*" + s.height);
    console.log("屏幕分辨率:" + window.screen.width + "*" + window.screen.height);
    console.log("屏幕分辨率:" + screen.width + "*" + screen.height);
</script>

JavaScript之window对象的属性和方法

window对象的方法
用法:对象名.方法名()

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <script type="text/javascript">
        function doAlert() {
            //window.alert("这是window对象的alert方法");
            alert("这是window对象的alert方法");
        }

        function doPrompt() {
            var name = window.prompt("请输入用户名:");
            if (name == null) {
                console.log("用户取消了输入操作!");
            } else {
                console.log(name);
            }
        }

        function doConfirm() {
            var flag = confirm("您确定要关闭吗?");
            if (flag) {
                console.log("好,关就关!");
            } else {
                console.log("那就不关了吧!");
            }
        }
    </script>
</head>

<body>
    <input type="button" value="测试alert" onclick="doAlert()" />
    <input type="button" value="测试prompt" onclick="doPrompt()" />
    <input type="button" value="测试confirm" onclick="doConfirm()" />
</body>

</html>

JavaScript之window对象的属性和方法
JavaScript之window对象的属性和方法