我有兩個班的jQuery例如:在jquery中獲取對象名稱?
function a(){
this.init = function(a){}
}
function b(){
this.init = function(a){}
}
兩個類具有this.init() method.I遇到這樣的情況,我有兩個類的對象,我想調用的init()的b類方法,我怎麼能知道自定義對象的名字,這樣我可以方便地調用b類的init()方法類似
if (current_object == typeof b)
current_object.init()
這是什麼了使用jQuery做? – mpen