我有这个 jquery 代码,但我无法设置默认行为。我可以在哪里(我的意思是代码中的位置)编写默认指令?返回 this.each 之后还是之前还是在哪里?谢谢你的答案。
// corners v2
$.fn.corners2 = function (options) {
// defaults settings for corners2
var defaults = {
// corners default style
corners: 'default',
// corners default radius
border_radius: '1',
// borders default style
border_style: 'solid',
// borders default color without # symbol
border_color: '#f7145a'
};
// options
var options = $.extend({}, defaults, options);
return this.each(function () {
var element = $(this);
// corners
switch (options.corners) {
// all
case 'all':
element.css({
'-webkit-border-radius': '' + options.radius + 'px',
'-moz-border-radius': '' + options.radius + 'px',
'border-radius': '' + options.radius + 'px'
});
break;
// top left
case 'top-left':
element.css({
'-webkit-border-top-left-radius': '' + options.radius + 'px',
'-moz-border-radius-topleft': '' + options.radius + 'px',
'border-top-left-radius': '' + options.radius + 'px'
});
break;
// top right
case 'top-right':
element.css({
'-webkit-border-top-right-radius': '' + options.radius + 'px',
'-moz-border-radius-topright': '' + options.radius + 'px',
'border-top-right-radius': '' + options.radius + 'px'
});
break;
}
});
};
}(jQuery));