(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
一只名叫tom的猫
慕哥6287543
随时随地看视频慕课网APP
相关分类