DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> JS的get和set使用示例
JS的get和set使用示例
編輯:JavaScript綜合知識     

 巧用get和set,能夠直接操作對象屬性實現讀寫,可以極大的提高編程效率,下面有個不錯的示例,大家可以參考下

巧用get和set,能夠直接操作對象屬性實現讀寫,可以極大的提高編程效率,給出一個典型示例:   代碼如下: var test = {  _Name : null,  _Age : 0,    //_Name的讀寫  set name(name) {this._Name = name;},  get name() {return this._Name;},  //_Age的讀寫  set age(age) {this._Age = age;},  get age() {return this._Age;}  }    alert(test.name + " " + test.age);//bull 0  test.name = 'lucy';  test.age = 20;  alert(test.name + " " + test.age);//lucy 20     
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved