如何从同一个对象内部调用jQuery插件的函数。我使用确切的建议解决方案http://docs.jquery.com/Plugins/Authoring#Plugin_Methods。从外部代码我可以这样称呼:
$('div').tooltip("myMethod", an_attr);
但是当'this'不是插件的对象时,如何从内部特别是form事件中调用相同的内容。
var methods = {
var $this = $(this);
init : function( options ) {
$this.click(function(){
$this.fn2("myMethod", an_attr); //is it right way?
});
},
fn2 : function() {
//but how can I call the myMethod. here ?
},
myMethod : function() {...