jquery 插件封装模板

Posted anne_zhou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 插件封装模板相关的知识,希望对你有一定的参考价值。

//插件编写模板
;(function ($) {
    $.fn.plugIn = function ( opt ) {
        var def = {
            //这里填写自定义的参数例如:
            event : ‘click‘
        }
        opt = $.extend( def , opt );
        this.each(function(){

            var that = $(this); //that 指的是 .box
             //测试执行
            that.on( opt.event , function(){
                alert( opt.event );
            });

        });
        return this;
    }
})(jQuery);

//调用
$(‘.box‘).plugIn({
    event : ‘mouseover‘ //可进行篡改
});

  

以上是关于jquery 插件封装模板的主要内容,如果未能解决你的问题,请参考以下文章

[vscode]--HTML代码片段(基础版,reactvuejquery)

出位的template.js 基于jquery的模板渲染插件,简单好用

Jquery插件封装---代码瓶颈

常用Javascript代码片段集锦

jQuery 插件封装的方法

vscode插件推荐