gpt4 book ai didi

javascript - 添加 form.submit 事件以确保在提交表单之前发布?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:38:57 26 4
gpt4 key购买 nike

我有一个表格。我想使用 jquery 添加事件处理程序。

$("form").submit(function blah() {
$.post('ping-me-please.php', params, function (response) {
// only submit the form once this goes through!
});

}

我怎样才能做到这一点?

最佳答案

像这样:

$("form").submit(function (e) {
var form = $(this);

if (!form.data('pinged')) {
e.preventDefault(); // Cancel the submit
$.post('ping-me-please.php', params, function (response) {
// only submit the form once this goes through!

// First we set the data, then we trigger the submit again.
form.data('pinged', true).submit();
});
}
}

关于javascript - 添加 form.submit 事件以确保在提交表单之前发布?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3682414/

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