欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

用jquery创建一个确认对话框 博客分类: jquery jquery插件jquery对话框对话框插件 

程序员文章站 2024-03-26 08:39:17
...

用jquery创建一个确认对话框
            
    
    博客分类: jquery jquery插件jquery对话框对话框插件 

 

文章详情(附demo和下载)

 

 

$(document).ready(function(){
    $('.item .delete').click(function(){
        var elem = $(this).closest('.item');
        $.confirm({
            'title': 'Delete Confirmation',
            'message': 'You are about to delete this item. 
It cannot be restored at a later time! Continue?',
            'buttons': {
                'Yes': {
                    'class': 'blue',
                    'action': function(){
                        elem.slideUp();
                    }
                },
                'No': {
                    'class': 'gray',
                    'action': function(){}// Nothing to do in this case. You can as well omit the action property.
                }
            }
        });
    });
});