主页面点击保存按钮启动自定义确认消息。单击“否”,返回值为true。但是主页面没有保存。
$.msgbox('<br />Are you ready to submit?', {
type: "confirm",
buttons: [
{ type: "submit", value: "Yes" },
{ type: "submit", value: "No" }
]
}, function(result) {
if (result == "Yes") {
alert("hello.");
return false;
}
else{
return true;
}
});
}