次のコードは、メソッドを使用してプラグインを作成します
(function ( $ ) {
$.fn.greenify = function( options ) {
// This is the easiest way to have default options.
var settings = $.extend({
// These are the defaults.
color: "#556b2f",
backgroundColor: "white"
}, options );
// Greenify the collection based on the settings variable.
return this.css({
color: settings.color,
backgroundColor: settings.backgroundColor
});
};
}( jQuery ));
そして、次のように使用できます。
$( "div" ).greenify({
color: "orange"
});
でもこういうの知りたい
<div class="pluginclass"></div>
そして、これは、マークアップでクラスを使用しているだけでなく、好きではないプラグインに従っている必要があります$('div').pluginclass();