如何为所有表单提交事件编写通用 js 函数?

发布于 2024-09-16 06:58:50 字数 481 浏览 5 评论 0原文

我想为我的应用程序中的所有表单提交事件编写一个 js/jquery 函数。

目前我正在在 3 个位置这样进行硬编码,并且它正在工作,但我必须分别为每个表单创建一个函数:

jQuery('#myForm').live('submit',function(event) { // #myForm hardcoded here
    $.ajax({
        url: 'one.php', // one.php hardcoded here
        type: 'POST',
        data: $('#myForm').serialize(), // #myForm hardcoded here
        success: function( data ) {
            alert(data);
        }
    });
    return false;
});

谢谢

I want to code a single js/jquery function for all forms submit events in my application.

Currently I am hardcoding on 3 locations like that and it is working but I have to create a function for each form separately:

jQuery('#myForm').live('submit',function(event) { // #myForm hardcoded here
    $.ajax({
        url: 'one.php', // one.php hardcoded here
        type: 'POST',
        data: $('#myForm').serialize(), // #myForm hardcoded here
        success: function( data ) {
            alert(data);
        }
    });
    return false;
});

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你在看孤独的风景 2024-09-23 06:58:50
jQuery('form').live('submit',function(event) {
    $.ajax({
        url: $(this).attr('action'),
        type: 'POST',
        data: $(this).serialize(),
        success: function( data ) {
            alert(data);
        }
    });
    return false;
});
jQuery('form').live('submit',function(event) {
    $.ajax({
        url: $(this).attr('action'),
        type: 'POST',
        data: $(this).serialize(),
        success: function( data ) {
            alert(data);
        }
    });
    return false;
});
苏辞 2024-09-23 06:58:50
  • 您可以将 $('#myForm') 替换为 $('form') 或其他匹配所有表单的内容。
  • one.php 可能是表单上的操作属性,或 $('form').attr('action')。
  • You can probably replace $('#myForm') by $('form') or something else which matches all forms.
  • one.php is probably the action attribute on the form, or $('form').attr('action').
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文