// プラグインの背景
(function ( $ ) {
// background
$.fn.background = function( color )
{ $.fn.css({ 'background-color':'#'+color+'' }); };
}( jQuery ));
// usage for black background color for element #div
$('#div').background('000000');
// プラグインの背景
(function ( $ ) {
// background
$.fn.background = function( color )
{ $.fn.css({ 'background-color':'#'+color+'' }); };
}( jQuery ));
// usage for black background color for element #div
$('#div').background('000000');
それは次のようになります。
(function ($) {
$.fn.background = function(color) {
return this.each(function() {
$(this).css('background-color', '#' + color);
});
};
}(jQuery));
$(function() { // you still need a DOM ready handler
$('#div').background('000000');
});
this
プラグインで要素を参照します