DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> javascript中的__defineGetter__和__defineSetter__介紹
javascript中的__defineGetter__和__defineSetter__介紹
編輯:關於JavaScript     

Getter是一種獲取一個屬性的值的方法,Setter是一種設置一個屬性的值的方法。可以為任何預定義的核心對象或用戶自定義對象定義getter和setter方法,從而為現有的對象添加新的屬性。

有兩種方法來定義Getter或Setter方法:

1.在對象初始化時定義
2.在對象定義後通過Object的__defineGetter__、__defineSetter__方法來追加定義

在使用對象初始化過程來定義Getter和Setter方法時唯一要做的事情就是在getter方法前面加上“get”,在setter方法前面加上“set”。

還有一點要注意的就是getter方法沒有參數,setter方法必須有一個參數,也就是要設置的屬性的新值。

例如:
復制代碼 代碼如下:
   o = { 
        value:9, 
        get b() {return this.value;}, 
        set setter(x) {this.value = x;} 
    } 

在對象定義後給對象添加getter或setter方法要通過兩個特殊的方法__defineGetter__和__defineSetter__。這兩 個函數要求第一個是getter或setter的名稱,以string給出,第二個參數是作為getter或setter的函數。

例如我們給Date對象添加一個year屬性:
復制代碼 代碼如下:
Date.prototype.__defineGetter__('year', function() {return this.getFullYear();}); 
    Date.prototype.__defineSetter__('year', function(y) {this.setFullYear(y)}); 
     
    var now = new Date; 
    alert(now.year); 
    now.year = 2006; 
    alert(now);

至於采用哪種形式主要取決於個人的編程風格,采用第一種形式結構緊湊,更容易理解。但是假如你想在對象定義以後再添加Getter或Setter,或者這個對象的原型不是你寫的或是內置對象,那麼只好采用第二種方式了。

下面是一個為Mozilla浏覽器添加innerText屬性的實現:
復制代碼 代碼如下:
 HTMLElement.prototype.__defineGetter__  
    ( 
       "innerText",function() 
       //define a getter method to get the value of innerText,  
       //so you can read it now!  
       { 
          var textRange = this.ownerDocument.createRange(); 
          //Using range to retrieve the content of the object 
          textRange.selectNodeContents(this); 
          //only get the content of the object node 
          return textRange.toString(); 
          // give innerText the value of the node content 
       }

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved