我有一个基于PHP的表单,可以将数据插入数据库。
我想要发生的是当我点击提交按钮时,会出现一个带有是和否的弹出框。如果选择yes,则它将重定向到将表单数据插入数据库的页面。
如何做到这一点?感谢。
答案 0 :(得分:0)
你可以用js和jQuery制作它。我不知道你的背景,但可能是这样的:
$('<div></div>').appendTo('body')
.html('<div><h6>Do you really want to do this?</h6></div>')
.dialog({
modal: true,
title: 'Title',
buttons: {
Yes: function () {
doFunctionForYes();
$(this).dialog("close");
},
No: function () {
doFunctionForNo();
$(this).dialog("close");
}
},
close: function (event, ui) {
$(this).remove();
}
});
$('#msg').hide();
function doFunctionForYes() {
alert("Yes");
$('#msg').show();
}
function doFunctionForNo() {
alert("No");
$('#msg').show();
}