jquery提交表单->只发布可见数据

发布于 2024-12-11 21:50:53 字数 65 浏览 0 评论 0原文

我有一个带有很多单选按钮的表单。根据您的选择,将显示不同的按钮组。有没有办法只在用户按下提交按钮时发布可见按钮?谢谢

I have a form with a lot of radiobuttons. Depending on what you choose, different sets of buttons will be shown. Is there any way to only post the visible buttons when a user presses a submit button? Thanks

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

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

发布评论

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

评论(3

-柠檬树下少年和吉他 2024-12-18 21:50:53

您可以挂钩提交功能:

$("#formID").submit(function() {
   //Do what you need
});

然后执行 AJAX post,其中数据为 $('input:visible'),或删除隐藏元素等。

注意:返回 false 会阻止提交!

You can hook the submit function:

$("#formID").submit(function() {
   //Do what you need
});

Then do an AJAX post where the data is $('input:visible'), or remove the hidden elements, etc.

Note: returning false prevents the submission!

渔村楼浪 2024-12-18 21:50:53

仅当您手动触发表单提交时,您才能过滤单选按钮,例如使用
.click(fn).submit(fn) 函数。

例如

<button id="myFormSubmit"> <!-- in the form -->

//In js file or in the embed function
$(document).ready(function()
{
     $('#myFormSubmit').click(function()
     {
         var filterCheckbox1 = $('input[type=checkbox][name=checkbox1Group1]').val();
         ...
         var filterCheckboxN = $('input[type=checkbox][name=checkboxNGroup1]').val();
     });
});

You can filter radio buttons only if you trigger form submit manually for example with
.click(fn) or .submit(fn) function.

For example

<button id="myFormSubmit"> <!-- in the form -->

//In js file or in the embed function
$(document).ready(function()
{
     $('#myFormSubmit').click(function()
     {
         var filterCheckbox1 = $('input[type=checkbox][name=checkbox1Group1]').val();
         ...
         var filterCheckboxN = $('input[type=checkbox][name=checkboxNGroup1]').val();
     });
});
爱要勇敢去追 2024-12-18 21:50:53

可能,但您应该依靠服务器端逻辑来确保没有人向您发送“捏造”的数据。

您可以通过在提交之前从表单中删除隐藏的控件来实现这一点,如下所示(jQuery):-

$(id).remove();

这将删除所有隐藏的输入控件。不过,我真的不会特别推荐这样做(如果您在 .net 中执行此操作,请务必小心,因为这会终止视图状态和事件验证。

$('input:hidden').remove();

probably, but you should be relying on server side logic to ensure nobody is sending you 'fudged' data anyway.

You could probably do it by removing the hidden ones from the form prior to the submission like this (jQuery):-

$(id).remove();

This will remove all hidden input controls. I really wouldn't particularly recommend this however (and be very careful if you are doing this in .net as this will kill viewstate and event validation.

$('input:hidden').remove();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文