当值 = 其他值之一时选中选择框
我有一个这样的值:
$brands = "1,2,3,4,5"
并且我有这个:
<input type="checkbox" name="brand[]" value="<?php print"$brand_id"; ?>" /><?php print"$brand_id"; ?>
我想编写源代码,所以当 $brand_id
是选中其中一个 $brands
复选框表示打印“已选中”;
$brands 是变量,由 php 编写
I have a value like this :
$brands = "1,2,3,4,5"
and I have this :
<input type="checkbox" name="brand[]" value="<?php print"$brand_id"; ?>" /><?php print"$brand_id"; ?>
I want to write source so when $brand_id
is one of $brands
check box checked means print "checked";
$brands is Variable and write by php
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这将为您拥有的每个品牌输出一个
并将
checked="checked"
附加到任何选定的品牌。如果 $brands 和 $selected 是动态的(例如来自 MySQL 数据库),您可以执行以下操作:
但如果不了解有关您的应用程序的更多信息,我无法给出完整的答案。
This will output an
<input>
for every brand you have and appendchecked="checked"
to any of the selected.If the $brands and $selected are dynamic (for example from a MySQL database) you could do something like:
But without knowing more about your application, I cannot give a complete answer.