我想点击'确定'按钮然后重定向到一个页面,然后单击'取消'按钮并重定向到另一个页面。我怎样才能做到这一点?
function saveCase() {
if (recordedFullSymptoms.length != 0 && cust_preferenceFile.patient.patientId == 0) {
swal({
text: "You can save the case by selecting or creating new patient.",
buttons: true,
confirmButtonText: "Ok",
showCancelButton: true,
closeOnCancel: true
}).then(function() {
if(okay) {
alert(1);
getPartialView('PatientList', this);
}else{
getPartialView('RepertoryList', this)
}
})
}
else
{
swal("Please select atleast one symptom to save case.");
}
}
答案 0 :(得分:1)
将第二个功能传递给.then()
。
swal(...)
.then(function(){ //Ok button action
}, function(){ //Cancel button action
})