gpt4 book ai didi

javascript - jQuery - 防止默认,然后继续默认

转载 作者:IT王子 更新时间:2023-10-29 02:45:00 25 4
gpt4 key购买 nike

我有一个表单,当提交时,我需要做一些额外的处理才能提交表单。我可以阻止默认的表单提交行为,然后进行额外的处理(基本上是调用 Google Maps API 并向表单添加一些隐藏字段)——然后我需要提交表单。

有没有办法“防止违约”,然后在某个时候“继续违约?”

最佳答案

使用jQuery.one()

Attach a handler to an event for the elements. The handler is executed at most once per element per event type

$('form').one('submit', function(e) {
e.preventDefault();
// do your things ...

// and when you done:
$(this).submit();
});

one 的使用也防止无限循环,因为这个自定义 submit 事件在第一次提交后分离。

关于javascript - jQuery - 防止默认,然后继续默认,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14375144/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com