请帮助我,如何在回调中调用方法?
例子:
var methods = {
init : function( settings ) {
},
destroy : function( ) { },
reposition : function( ) { },
show : function( ) { },
hide : function( ) { },
myfunc : function() {}
};
//
$.fn.myPlugin.defaults = {
// CALLBACK
onClickElement : function(element) {}
};
$('#elementLi').myPlugin({
onClickElement: function(element) {
// here call method myfunc
}
});
如何在 onClickElement 中调用 myfunc?
谢谢你!PS对不起我的英语不好