我使用以下内容作为 jquery 插件的基础,但从我的 .find 开始,我似乎遇到了一些语法问题。不会调用 click 函数中的代码,也不会应用该类。有人可以建议我在这里可能出错的地方吗?
(function($){
$.fn.expandCollapse = function(options){
var opts = $.extend({}, $.fn.expandCollapse.defaults, options);
function initialize(){
$(this).each(function(){
// code
}).find("p").click(function(){
// code
}).end().not(:first).addClass(opts.c);
}
initialize();
return $(this);
};
$.fn.expandCollapse.defaults = {
c: "collapsed"
};
})(jQuery);