gpt4 book ai didi

jquery - 使用 jQuery 发布表单值的简单方法

转载 作者:行者123 更新时间:2023-12-01 06:18:21 25 4
gpt4 key购买 nike

我有一个简单的表单,我希望以简单的方式回发到服务器并获得结果。我在后端使用自定义 ISAPI 插件,因此不能选择使用 JSON 或其他时髦的东西。我怎样才能最好地做到这一点?

编辑:如果可能的话,我也不想使用外部插件

最佳答案

使用serialize获取表单的字符串表示形式,然后使用 jQuery 的 post 简单地发布它AJAX 功能。

非常简单的示例(来自使用 PHP 的 jQuery 网站,但任何 URL 都可以):

$.post("test.php", $("#testform").serialize());

如果页面上有多个表单,您可以在单击按钮时使用此代码来获取正确的表单 ID(其中“someButton”可以是任何有效的 jQuery 选择器):

$('someButton').click(function() {
//old, less efficient code
//var formId = $(this).closest("form").attr("id");
//$.post("test.php", $("#" + formId).serialize());

//as per Vincent Robert's suggestion, simplified version
$.post("test.php", $(this).closest("form").serialize());
});

关于jquery - 使用 jQuery 发布表单值的简单方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2721701/

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