zoukankan      html  css  js  c++  java
  • The window object

      At the core of the BOM is the window object, which represents an instance of the browser. The window object serves a dual purpose in browsers, acting as the JavaScript interface to the browser window and the ECMAScript Global object. This means that every object, variable, and function defined in a web page uses windows as its Global object and has access to methods like parseInt().

    The Global Scope

      Since the window object doubles as the ECMAScript Global object, all variables and functions declared globally become properties and methods of the window object. Consider this example:

    1 var age = 29;
    2 function sayAge(){
    3   alert(this.age);
    4 }
    5 
    6 alert(window.age);
    7 sayAge();
    8 window.sayAge();
    View Code

      Despite global variables becoming properties of the window object, there is a slight difference between defining a global variable and defining a property directly on window: global variables cannot be removed using the delete operator, while properties defined on window can. For example:

     1 var age = 29;
     2 window.color = "red";
     3 
     4 // throws an error in IE < 9, returns false in all other browsers
     5 delete window.age;
     6 
     7 // throws an error in IE < 9, returns true in all other browsers
     8 delete window.color;
     9 
    10 alert(window.age);          // 29
    11 alert(window.color);        // undefined
    View Code

      Properties of window that were added via var statements have their [[Configurable]] attribute set to false and so may not be removed via the delete operator.

      Another thing to keep in mind: attempting to access an undeclared variable throws an error, but it is possible to check for the existence of a potentially undeclared variable by looking on the window object. For example:

    1 // this throws an error because oldValue is undeclared
    2 var newValue = oldValue;
    3 
    4 // this doesn't throw an error, because it's a property lookup
    5 // newValue is set to undefined
    6 var newValue = window.oldValue;
    View Code

      Keeping this in mind, there are many objects in JavaScript that are considered to be global, such as location and navigator(both discussed later in the chapter), but are actually properties of the window object.

  • 相关阅读:
    项目架构工具选择
    idea 引入本地jar包
    java 二维/三维/多维数组
    Windows 远程连接
    SQL SERVER 本地同步数据到远程数据服务器
    利用sp_addlinkedserver实现远程数据库链接
    ORACLE 手动添加时间分区
    ORACLE 时间段
    shiro异常简述
    kvm虚拟机克隆
  • 原文地址:https://www.cnblogs.com/linxd/p/4514696.html
Copyright © 2011-2022 走看看