Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个网站:http ://aisiel.ro - 一个房地产代理网站
滑块下方是我们称为“Zona”的区域的搜索字段 - 英文区域。
从这里用户只能选择一个搜索区域,而我希望能够为用户选择多个区域以获得多个字段的结果。:)
我不是很擅长 php,但我正在努力,所以我该怎么办?
如果我正确理解您的问题,您需要将该multiple属性添加到 Zonaselect标记。例如:
multiple
select
<select multiple> <option value="value">Value</option> // More options </select>
由于执行此操作的方式不同,并且由于您必须通知用户可以进行多选,因此使用复选框对用户更友好。
我希望这有帮助。