gpt4 book ai didi

javascript - 如何根据单击的提交按钮传递不同的隐藏输入字段

转载 作者:行者123 更新时间:2023-12-03 00:07:18 25 4
gpt4 key购买 nike

我有两个隐藏的输入字段,它们具有相同的名称,但具有不同的 id。我想通过基于不同提交按钮的操作来传递它。当我单击“正常”进程按钮时,它应该传递 #normalfee 隐藏字段值,当单击“紧急”时,它应该传递 #urgentfee 值。

<form name="home" action="#" method="post">
<input type="hidden" name="fee" id="normalfee" value="49">
<input type="hidden" name="fee" id="urgentfee" value="99">
<input type="submit" name="Normal Process">
<input type="submit" name="urgent process">
</form>

最佳答案

我将使用单选按钮来选择进程的状态,然后推断接收端的金额。这样用户就无法修改该值,并且您只有一个按钮来提交表单,同时仍然有多个选项可供选择。

<form name="home" action="#" method="post">
Fee type:<br>
<input type="radio" name="fee" value="normalfee">Normal<br>
<input type="radio" name="fee" value="ugrentfee">Urgent<br>
<input type="submit" name="Process">
</form>

关于javascript - 如何根据单击的提交按钮传递不同的隐藏输入字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54903731/

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