如何在提交之前添加是/否确认?在继续删除或编辑之前,我想要提醒您。怎么做?
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();
})
})
答案 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();
})
})