我需要從另一個固有的類。javascript inherance?與私人變數和方法
父具有私有變量「_data」和私有方法「_test」和公共方法「添加」 現在孩子有一個公共方法「添加」,它使用私人方法從父母「_test」和私人變種「_數據」。
我該怎麼做?
var Parent = function(){
var _data = {};
var _test = function(){alert('test')};
this.add = function(){alert('add from parent')}
}
var Child = function(){
this.add = function(){// here uses the _data and _test from the Parent class
alert('add from child')
}
}
// something to inherent Child from Parent
// instance Child and use the add method
而且我想我錯過了原型概念(Javascript inheritance)
我只能像我使用的框架一樣使用jquery。我寧願只堅持1 ... – 2010-04-29 23:29:39