我正在尝试创建一个 jQuery 插件。
$.fn.examplePlugin = function() {
$.item = $(this);
$(this).hide('fast',function () {
return 'bla';
});
}
我需要在函数中显示结果:
$('form').examplePlugin(function(data)) {
alert('data'); // need to return 'bla'
});