如何查看哪个复选框被选中?
如何在 PHP 中检查 checkbox
是否被选中?
How do I check in PHP whether a checkbox
is checked or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 PHP 中检查 checkbox
是否被选中?
How do I check in PHP whether a checkbox
is checked or not?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
如果选中该复选框,则将传递该复选框的值。否则,该字段不会在 HTTP post 中传递。
If the checkbox is checked, then the checkbox's value will be passed. Otherwise, the field is not passed in the HTTP post.
您可以通过
isset()
或empty()
(其检查显式 isset)来检查天气复选框是否已选中,例如
在这里您可以通过
或
以上 进行检查如果你想要做的事情比你可以创建一个数组的多,那么只会检查一个,而不是为所有复选框单独编写尝试像
php
you can check that by either
isset()
orempty()
(its check explicit isset) weather check box is checked or notfor example
here you can check by
or
the above will check only one if you want to do for many than you can make an array instead writing separate for all checkbox try like
php
试试这个
index.html
form.php
或者这个
Try this
index.html
form.php
Or this
如果您不知道页面有哪些复选框(例如:如果您动态创建它们),您可以简单地在复选框上方放置一个具有相同名称和 0 值的隐藏字段。
这样,根据复选框是否被选中,您将得到 1 或 0。
If you don't know which checkboxes your page has (ex: if you are creating them dynamically) you can simply put a hidden field with the same name and 0 value right above the checkbox.
This way you will get 1 or 0 based on whether the checkbox is selected or not.
我喜欢短手,所以:
I love short hands so: