如何在单击“确定”按钮后重定向页面并在甜蜜警报上取消按钮?

时间:2018-02-28 11:56:48

标签: jquery sweetalert

我想点击'确定'按钮然后重定向到一个页面,然后单击'取消'按钮并重定向到另一个页面。我怎样才能做到这一点?

 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.");
     }
    }

1 个答案:

答案 0 :(得分:1)

将第二个功能传递给.then()

swal(...)
.then(function(){ //Ok button action

}, function(){ //Cancel button action

})