如何使用回调创建jquery函数

时间:2021-08-08 09:18:14

How do I create a plugin / jquery function with the use of the following

如何使用以下内容创建插件/ jquery函数

$("#button").click(function(){
  $.confirm({
     yes : function(){
        // some code
     },
     no : function(){
        // Some code
     }
  });
});

1 个解决方案

#1


First, define the plugin

首先,定义插件

$.confirm = function(params) {
    if (confirm(params.message))
        params.yes();
    else
        params.no();

    return this; //to allow chaining
}

Now you can use this plugin as

现在你可以使用这个插件了

$('#button').click(function(){
    $.confirm({
        message: "Are you sure?",
        yes: function(){},
        no: function(){}
    });
});

#1


First, define the plugin

首先,定义插件

$.confirm = function(params) {
    if (confirm(params.message))
        params.yes();
    else
        params.no();

    return this; //to allow chaining
}

Now you can use this plugin as

现在你可以使用这个插件了

$('#button').click(function(){
    $.confirm({
        message: "Are you sure?",
        yes: function(){},
        no: function(){}
    });
});