Confirm before a form submit

前端 未结 7 1342
孤城傲影
孤城傲影 2020-12-05 07:38

I have searched for an answer but couldn\'t find one!

I have a simple form,

7条回答
  •  不知归路
    2020-12-05 08:30

    In my case, I didn't have a form ID and couldn't add inline in the form tag. I ended up with the following jQuery code

        var form = $("form").first();
        form.on('submit', function() {
            return confirm('Are you sure you want to submit this form?');
        });
    

提交回复
热议问题