如何在脚本中添加确认是或否

时间:2013-11-22 02:41:50

标签: javascript jquery

如何在提交之前添加是/否确认?在继续删除或编辑之前,我想要提醒您。怎么做?

jQuery(function ($) {
        $('a.button.edit, a.button.remove').click(function () {
            if ($('input[name="checkbox[]"]:checked').length == 0) {
                return;
            }

            var frm = document.myform;
                if($(this).hasClass('edit')){
                frm.action = 'editpr.php';
            }
                if($(this).hasClass('remove')){
            }
            frm.submit();
        })
    })

1 个答案:

答案 0 :(得分:2)

使用window.confirm()显示确认对话框。

jQuery(function ($) {
    $('a.button.edit, a.button.remove').click(function () {
        if ($('input[name="checkbox[]"]:checked').length == 0) {
            return;
        }

        if(!confirm('do you want to contine')){
            return
        }

        var frm = document.myform;
        if ($(this).hasClass('edit')) {
            frm.action = 'editpr.php';
        }
        if ($(this).hasClass('remove')) {}
        frm.submit();
    })
})