how do I get all checkbox variables even if not checked from HTML to PHP?(即使没有从 HTML 到 PHP 进行检查,我如何获取所有复选框变量?)
问题描述
我注意到 PHP 似乎只返回选中复选框的值.我想查看复选框列表,而不仅仅是选中复选框的值.有没有办法检测未选中框的变量?
I noticed that PHP seems to return only values of checked checkboxes. I would like to see a list of checkboxes, not just values of checked checkboxes. Is there a way to detect variables of unchecked boxes?
我问是因为我希望能够更新设置.例如,我有一些已被选中的选项,但如果用户决定取消选中某个选项,我需要知道未选中的值,以便我可以更新要禁用的选项.
I asked because I want to be able to update settings. For example, I have a few options that are already checked but if an user decides to uncheck an option, I need to know that unchecked value so I can update the option to be disabled.
推荐答案
我自己刚刚遇到了这个问题.我通过添加具有相同名称的重复 hidden 字段来解决它.当浏览器发送此信息时,第二个字段会覆盖第一个字段(因此请确保 hidden 字段排在最前面).
I just ran into this problem myself. I solved it by adding a duplicate hidden field with the same name. When the browser sends this information, the second field overrides the first (so ensure that the hidden field comes first).
<input type="hidden" name="foo" value="">
<input type="checkbox" name="foo" value="bar">
如果 checkbox 没有被选中,你会得到:
If the checkbox is not checked you get:
$_REQUEST[ 'foo' ] == ""
如果checkbox被选中,你会得到:
If the checkbox is checked you get:
$_REQUEST[ 'foo' ] == "bar"
这篇关于即使没有从 HTML 到 PHP 进行检查,我如何获取所有复选框变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:即使没有从 HTML 到 PHP 进行检查,我如何获取所有
基础教程推荐
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何替换eregi() 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
