如何在使用jQuery阻止之後繼續提交表單?如何在使用jQuery阻止之後繼續提交表單?
例如:
有一個刪除input
元素:
<form action="/articles/{{ $article->id }}" method="POST">
{{ method_field('DELETE') }}
{{ csrf_field() }}
<input class="btn btn-danger btn-sm need-alert" type="submit" value="delete">
</form>
我想提交表單之前給用戶一個sweetalert2
警報。
Javascript code:
<script>
$('.need-alert').on('click', function (event) {
event.preventDefault();
//sweetalert2 code
swal({
title: 'Are you sure?',
text: "You won't be able to revert this!",
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, delete it!'
}).then(function() {
//...
}).catch(swal.noop);
})
</script>
的sweetalert2
警告框可以正確顯示。
問:
如何繼續單擊sweetalert2提示框的確定按鈕後,提交表單?
給您形式的ID,然後在做$( 「#formId」)提交() –
點擊提示框確認按鈕,消防$(「#後。形式「)提交(); –
@M。加拉和Akshay Chawla,它不起作用。 – zwl1619