我想在保存数据库记录之前添加确认框 是没有选择 如果用户说是,那么记录会被保存,但如果他说不,那么记录寿衣就不会被保存
我正在使用带有J Table的mvc5,所以我在删除记录之前得到相同的选项(你确定要删除吗?) 可以帮助我在插入新记录之前获得相同的选项
我尝试按照代码但失败,因为它只显示警告而不是确认框。
sqlSelecActiveOtl.baseSQL = " select * from table "
SQLData ActiveOtl = sqlSelecActiveOtl.Retrieve(connection);
if (ActiveOtl.rows[0][0].ToString().Equals("0"))
{
throw new AppError("Records are present");
}
任何人都可以给我更多建议吗?
java脚本函数
$(function dialog1 () {
$("#dialog-confirm").dialog({
resizable: false,
height: "auto",
width: 405,
modal: true,
//dialogClass:ui-dialog
buttons:
{
"Yes": function () {
},
"No": function () {
}
}
});
});
答案 0 :(得分:2)
试试这个 保存。
$("#btnSave").click(function () {
if (!confirm("Would you like to save this record?")) {
return false;
}
});