jQueryの自作プラグインを別ファイルにするサンプルです。
サンプルソース
コードを以下のように別ファイルで作成してjQueryのインポートの後に自作プラグインファイルをインポートします。
- myPlugin.js
- (function($){ $.fn.samplePlugin = function(){ this.css("color", "white"); this.css("background-color","green"); return this; }; })(jQuery);
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>サンプル</title> <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script> <script src="myPlugin.js"></script> <script> $(function(){ $('#btn1').click(function(){ $('#v1').samplePlugin().css("font-weight", "bold"); }); }); </script> </head> <body> <input type="button" id="btn1" value="btn1"> <div id="v1">abc</div> </body> </html> |
解説
- Pluginの書き方は、以下記事をご覧ください。
→ [jQuery] プラグインを自作する