Only allowing selection of one radio button in a form with PHP(只允许在使用 PHP 的表单中选择一个单选按钮)
本文介绍了只允许在使用 PHP 的表单中选择一个单选按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
一个非常基本的问题...
A very basic question...
如何只允许选择单选按钮列表中的一个选项?
How can I only allow the selection of one option in a list of radio buttons?
<form action="process_repair.php" method="POST">
<label for "repair_complete">Repair complete</label>
<input type="radio" name="Yes" value="true">
<input type="radio" name="No" value="false">
</form>
当此代码运行时,可以同时选择两个单选按钮,但我希望它们能够交互,因此您只能选择其中一个.
When this code runs, it's possible to select both radio buttons, but I'd like them to interact so you can only select one or the other.
非常感谢任何帮助!:)
Any help much appreciated! :)
推荐答案
给它们起相同的名字.
<form action="process_repair.php" method="POST">
Repair complete
<input type="radio" name="complete" value="true" id="complete_yes" />
<label for="complete_yes">Yes</label>
<input type="radio" name="complete" value="false" id="complete_no" />
<label for="complete_no">No</label>
</form>
标签必须有一个for
属性,指向对应输入的id
.
Labels must have a for
attribute, directing to the corresponding input's id
.
这篇关于只允许在使用 PHP 的表单中选择一个单选按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:只允许在使用 PHP 的表单中选择一个单选按钮
基础教程推荐
猜你喜欢
- Libpuzzle 索引数百万张图片? 2022-01-01
- 在多维数组中查找最大值 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01