标签: javascript jquery function methods prototype
我无法访问javascript类的父this。
this
Slider.prototype.method.submethod = function(){ var self = this; }
如何访问父级Slider类的this?我希望method仅描述目标,而不是将其作为对象本身。
method
有没有办法在不将其作为参数传递的情况下这样做?