最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - On click of esc button sweet alert should not be closed - Stack Overflow

programmeradmin1浏览0评论

when user clicks on esc alert should not be closed he should click on pay now button to move further.

 if($unpaid==true){
     echo $print = '<script>
      function alertOn(){
swal({ 
        title: "No Membership Fees Received",
        text: "Please pay membership fees as per your selected package",
        type: "warning",
        confirmButtonText: "PAY NOW"

      },
      function(){
        window.location.href = "unpaid.php";
    });
};
window.onload = alertOn
</script>';

when user clicks on esc alert should not be closed he should click on pay now button to move further.

 if($unpaid==true){
     echo $print = '<script>
      function alertOn(){
swal({ 
        title: "No Membership Fees Received",
        text: "Please pay membership fees as per your selected package",
        type: "warning",
        confirmButtonText: "PAY NOW"

      },
      function(){
        window.location.href = "unpaid.php";
    });
};
window.onload = alertOn
</script>';
Share Improve this question edited May 12, 2016 at 14:35 Ian 30.9k20 gold badges76 silver badges112 bronze badges asked May 12, 2016 at 13:33 vivekvivek 411 gold badge1 silver badge7 bronze badges 1
  • is there anyone with solution – vivek Commented May 12, 2016 at 13:38
Add a ment  | 

3 Answers 3

Reset to default 9

Yes, you can configure the swal function by modifying allowEscapeKey and allowOutsideClick properties to false like:

swal({
       title: 'title',
       text: 'your text',
       showConfirmButton: true,
       allowEscapeKey : false,
       allowOutsideClick: false
    });

I think for this version you can use this:

swal({
  title: 'title',
  text: 'your text',
  button: false,
  closeOnClickOutside: false,
  closeOnEsc: false
});
if ($unpaid == true) {
    echo $print1 = '<script>
    function alertOn(){
        swal({ 
            title: "No Membership Fees Received",
            text: "Please pay membership fees as per your selected package",
            type: "warning",
            confirmButtonText: "PAY NOW",
            **allowEscapeKey:false**

          },
          function(){
            window.location.href = "unpaid.php";
        });
    };
    window.onload = alertOn;
</script>';
}
发布评论

评论列表(0)

  1. 暂无评论