gpt4 book ai didi

javascript - 不勾选时需要设置radio group的默认值

转载 作者:搜寻专家 更新时间:2023-11-01 05:13:30 24 4
gpt4 key购买 nike

在我的 html 表单中,我有一组单选按钮

<form action="receive.php" method="post">
<input type="radio" name="rad" value="one" /> One <br />
<input type="radio" name="rad" value="two" /> Two <br />
<input type="radio" name="rad" value="three" /> Three <br />
<input type="submit" value="submit" />
</form>

我有一个没有选中单选按钮的场景。在这种情况下,我的服务器端 php 接收到的输入值为 false。我想要做的是将 false 更改为 nullundefined。那可能吗?非常感谢任何帮助。

最佳答案

你可以这样做:

<form action="receive.php" method="post">
<input type="radio" name="rad" value="one" /> One <br />
<input type="radio" name="rad" value="two" /> Two <br />
<input type="radio" name="rad" value="three" /> Three <br />
<input type="hidden" name="rad" value="null" />
<input type="submit" value="submit" />
</form>

现在,如果您没有选中任何单选按钮,您将获得“null”输入值,但请记住 “null” 与 PHP 中的 NULL 不同。

关于javascript - 不勾选时需要设置radio group的默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13119785/

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