返回首页 设计案例 文章动态 组件列表
联系我们

扫一扫微信二维码

jQuery.trigger() 函数的用法

jQuery.fn 开发组件


$.fn是指jquery的命名空间,加上fn上的方法及属性,会对jquery实例每一个有效。 

如扩展$.fn.abc(),即$.fn.abc()是对jquery扩展了一个abc方法,那么后面你的每一个jquery实例都可以引用这个方法了. 

那么你可以这样子:$("#div").abc();


jQuery.extend合并参数


$.extend(opt1,opt2);这样就是opt2的参数覆盖opt1的参数



开发dialog组件为例


主要结构为




$.fn.dialog = function(options){
    //设置参数
    var option = {
        content : "",//传入文本
        button  : [
            //{"txt" : "","func":function(){}} //传入的格式
        ],//传入对象 
        closeTime : 2000,//没有按钮时默认消失的时间
    }
    
    //合并参数(传进来的参数把默认的参数覆盖掉)
    var opts = $.extend(option,options);
}

调用方式



$("#box").dialog({
    content : "恭喜您,已抽8元红包",
    button  : [
        {"txt" : "取消","func" : function(){
            //按钮过后的回调函数
	}},
	"txt" : "确定","func" : function(){
	    //点击过后的回掉函数
	}},
    ],
    closeTime : 2000,//没有按钮时,默认关闭时间,默认为2000
})

示例




约定好组件的调用参数为:

$("#box").dialog({
    content : "恭喜您,已抽8元红包",
    button  : [
        {"txt" : "取消","func" : function(){
           //按钮过后的回调函数
        }},
        {"txt" : "确定","func" : function(){
          //点击过后的回掉函数
       }},
    ],
    //closeTime : 2000,//没有按钮时,默认关闭时间,默认为2000
})

html代码:

<div id="box">
  点我
</div>

css代码:

*{
    margin:0;
    padding:0;
}
a{
    text-decoration: none;
    color:#333;
}
body{
    font-size: 1em;
    font-family: "微软雅黑";
    color:#333;
}
.jq_dialog{
    max-width:15em;
    max-height:9.5em;
    overflow: hidden;
    border-radius: 7px;
    border:1px solid #aaa;
    position: fixed;
    z-index: 999999999;
}
.jq_main{
    line-height: 1.5em;
    max-height:6.5em;
    width:100%;
    overflow: hidden;
    padding:10px;
    box-sizing: border-box;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.none{
    display: none;
}
.clearfix:after{
    display: block;
    clear: both;
    content: "";
}
.left{
    float: left;
}
.jq_btn_1{
    height:1.8em;
    line-height: 1.8em;
    text-align: center;
    box-sizing: border-box;
}
.jq_btn_1:not(:last-child){
    border-right:1px solid #aaa;
}
.jq_btn_all{
    border-top:1px solid #aaa;
}

jquery代码

$(function(){

    $.fn.dialog = function(options){
        //设置参数
        var option = {
            content : "",//传入文本
            button  : [
                //{"txt" : "","func":function(){}} //传入的格式
            ],//传入对象 
            closeTime : 2000,//没有按钮时默认消失的时间
        }
        //何必参数
        var opts = $.extend(option,options);
        // 留住this
        var _self = $(this);
        //添加dom方法
        function addDom(){
            // html元素添加
            var oContaniner = $("<div class='jq_dialog none' id='jq_dialog'></div>");;
            var oContent = $("<div class='jq_main'>"+opts.content+"</div>");
            var oBtnAll = $("<div id='jq_btn_all' class='jq_btn_all clearfix'></div>");;
            oContaniner.append(oContent);
            if(opts.button.length > 0){
                oContaniner.append(oBtnAll)
            }
            $("body").append(oContaniner)
            //设置居中样式
            oContaniner.css({
                "left":($(window).width()-parseInt(oContaniner.css("width")))/2,
                "top" :($(window).height()-parseInt(oContaniner.css("height")))/2-20,
            })
            // 判断是否有按钮
            var obtn1 = (opts.button[0] == undefined || opts.button[0].txt == null || opts.button[0].txt == "")? "" : $("<a class='jq_btn_1 left' href='javascript:;'>"+opts.button[0].txt+"</a>");;
            var obtn2 = (opts.button[1] == undefined || opts.button[1].txt == null || opts.button[1].txt == "") ? "" : $("<a class='jq_btn_1 left jq_btn_2' href='javascript:;'>"+opts.button[1].txt+"</a>");
            oBtnAll.append(obtn1).append(obtn2);
            oContaniner.fadeIn(300);
            // 设置按钮的宽度
            $(".jq_btn_1").css("width",parseInt(oBtnAll.css("width"))/$(".jq_btn_1").length);
            // 按钮回调
            obtn1.length >= 1 && obtn1.click(function(){
                oContaniner.fadeOut(300,function(){
                    $(this).remove();
                });
                typeof(opts.button[0].func) == "function" && opts.button[0].func();
            })

            obtn2.length >= 1 && obtn2.click(function(){
                oContaniner.fadeOut(300,function(){
                    $(this).remove();
                });
                typeof(opts.button[1].func) == "function" && opts.button[1].func();
            })

            if(opts.button.length == 0){

                setTimeout(function(){

                    oContaniner.fadeOut(300,function(){
                        $(this).remove();
                    });

                },opts.closeTime)

            }
        }
        $(_self).click(function(){
            addDom()
        })
    }

    $("#box").dialog({
        content : "恭喜您,已抽8元红包",
        button  : [
                {"txt" : "取消","func" : function(){
                    //按钮过后的回调函数
                }},
                {"txt" : "确定","func" : function(){
                    //点击过后的回掉函数
                }},
        ],
        //closeTime : 2000,//没有按钮时,默认关闭时间,默认为2000
    })
})


建站咨询

点我咨询

建站咨询热线

153-2135-3313

QQ,新浪是独立账号信息不互通

Q Q 登陆

我已阅读并接受 《注册声明》与《版权声明》

没有账号?立即注册

QQ,新浪是独立账号信息不互通

Q Q 注册

我已阅读并接受 《注册声明》与《版权声明》

已有账号?

注册声明

一、用户注册、登陆,视为接受本协议的约束。

二、用户承诺遵守国家的法律法规及部门规章

三、用户承诺遵守“313组件库”的知识产权政策.

四、站内插件用于行业交流、学习。

五、用户侵犯第三人的知识产权,由该用户承担全部法律责任。

版权声明

313组件库(www.yu313.cn)站内所有涉及插件及代码由会员或站主上传而来,313组件库不拥有会员上传的插件及代码的版权

313组件库作为网络服务提供者,对非法转载,盗版行为的发生不具备充分的监控能力。但是当版权拥有者提出侵权指控并出示充分的版权证明材料时,313组件库负有移除盗版和非法转载作品以及停止继续传播的义务。313组件库在满足前款条件下采取移除等相应措施后不为此向原发布人承担违约责任或其他法律责任,包括不承担因侵权指控不成立而给原发布人带来损害的赔偿责任。

如果版权拥有者发现自己作品被侵权,请及时向313组件库提出权利通知,并将姓名、电话、身份证明、权属证明、具体链接(URL)及详细侵权情况描述发往版权举报专用通道,313组件库在收到相关举报文件后,在3个工作日内移除相关涉嫌侵权的内容

QQ:515184405(周一到周五,9:30-18:00)

首页 案例 组件 我的