0
var app = {
first_name: 'john',
last_name: 'doe',
full_name: this.first_name + ' ' + this.last_name
};
如何訪問對象內的屬性?我得到undefined使用this.property-name
作爲上述代碼。如何訪問對象內的對象屬性?
var app = {
first_name: 'john',
last_name: 'doe',
full_name: this.first_name + ' ' + this.last_name
};
如何訪問對象內的屬性?我得到undefined使用this.property-name
作爲上述代碼。如何訪問對象內的對象屬性?
讓你的FULL_NAME屬性的方法
var app = {
first_name: 'john',
last_name: 'doe',
full_name:function(){
return this.first_name + ' ' + this.last_name;
}
};
alert(app.full_name());
乾杯!
@ zarpio-Tick我的答案,如果它解決了你的問題。 – 2017-08-16 17:21:34