(function($) {
$.fn.MyCss = function(options) {
var defaults = {
bd: '#000',
cl: 'red'
};
var opts = $.extend(defaults, options);
return this.each(function() {
var _this = $(this);
_this.css({'background': opts.bd, 'color': opts.cl});
});
};
})(jQuery);
怎么添加callback
慕哥6287543
相关分类