1

我使用以下内容作为 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);
4

1 回答 1

4

你有这个片段:

not(:first)

尝试':first'用引号括起来。

于 2009-03-25T22:21:23.470 回答