表格使用SweetAlert2提交确认

时间:2019-03-20 05:44:18

标签: javascript php jquery forms sweetalert2

我正在处理一个需要提交表单之前进行确认的项目,为此,我正在使用SweetAlert2,但是它没有任何作用。我尝试了其他线程的代码,但是我遇到了同样的问题,页面加载,并且在提交表单时,它什么也没做(好吧,它提交的信息没有经过验证或提出问题)。它已经像没有SweetAlert的测试版一样工作。

HTML表单是这样的:

´<form class="form-register col-8" method="post" action="insert.php" enctype="multipart/form-data">
<select name="subjects"> 
  <option disabled="disabled">Select</option>
  <--!Here I have PHP code to list things from DB -->
</select>
<input id="m" type="text"/>
<select name="tempo">
  <option disabled="disabled">Select<option> <!--Regular options list-->
<select>
<input id="c" type="text"/>
<input type="submit" id="btn-ok" value="OK" name="register" class="btn btn-primary accept"/>
</form>´

我没有SweetAlert的功能脚本:

$(document).ready(function(){
$(".form-register").submit(function(){
 if ($("#m").val().length<9){
  alertify.warning('Incomplete ID');
  return false;
 }
 if ($("#m").val().length>9){
  alertify.warning('Error');
  return false;
 }
 if ($("#c").val().length>200){
  alertify.warning('Write less comments please');
  return false;
 }
 else
 {
    var Con= confirm("Click ok if you are sure");
    if(Con == true)
    {
      return true;
    }
    {
      return false;
    }
 }
});

});

注意:我正在使用jsdelivr的SweetAlert28.X。 我试图将此脚本分隔为一个函数,然后将其包含在else中(即使我退出了前两个$函数,也可以50%运行):

$(document).ready(function(){
$('.form-register').submit(function (e){
  e.preventDefault();
  const swalWithBootstrapButtons = Swal.mixin({
    customClass: {
      confirmButton: 'btn btn-success',
      cancelButton: 'btn btn-danger'
    },
    buttonsStyling: false,
  })
  swalWithBootstrapButtons.fire({
    title: 'Are you  sure?',
    text: "Check plz",
    type: 'warning',
    showCancelButton: true,
    confirmButtonText: 'OK',
    cancelButtonText: 'Cancel',
    reverseButtons: true
  }).then((result) => {
    if (result.value) {
      swalWithBootstrapButtons.fire(
        'Finished',
        'Success',
        'success',
      ), function(submit){
        form.submit();
        }
    } else if (
      result.dismiss === Swal.DismissReason.cancel
    ) {
      swalWithBootstrapButtons.fire(
        'Canceled',
        'Do corrections and then retry :)',
        'error'
      )
    }
  })
});

});

我试图用一个按钮替换输入中的提交类型,并在脚本的开头替换另一个选择器。我唯一需要做的是确认是否可以继续在insert.php上插入数据,如果用户取消,则尽可能返回另一条错误消息...

1 个答案:

答案 0 :(得分:0)

更改:

<input type="submit" id="btn-ok" value="OK" name="register" class="btn btn-primary accept"/>

收件人:

<input type="button" id="btn-ok" value="OK" name="register" class="btn btn-primary accept"/>

然后,在您的JS中,侦听“#btn-ok”上的单击,然后使用$ form.submit()以编程方式提交表单。见下文:

$(document).ready(function() {
    $('form #btn-ok').click(function(e) {
        let $form = $(this).closest('form');

        const swalWithBootstrapButtons = Swal.mixin({
            customClass: {
                confirmButton: 'btn btn-success',
                cancelButton: 'btn btn-danger'
            },
            buttonsStyling: false,
        })

        swalWithBootstrapButtons.fire({
            title: 'Are you  sure?',
            text: "Check plz",
            type: 'warning',
            showCancelButton: true,
            confirmButtonText: 'OK',
            cancelButtonText: 'Cancel',
            reverseButtons: true
        }).then((result) => {
            if (result.value) {
                swalWithBootstrapButtons.fire(
                        'Finished',
                        'Success',
                        'success',
                    );                     
                $form.submit();
            } else if (
                result.dismiss === Swal.DismissReason.cancel
            ) {
                swalWithBootstrapButtons.fire(
                    'Canceled',
                    'Do corrections and then retry :)',
                    'error'
                );
            }
        });

    });