答案 0 :(得分:2)
根据您的提问,我认为您正在寻找data attributes
<select name="property_category" data-property="category1" id="property_category" class="in-field field width">
答案 1 :(得分:0)
您是否尝试将这些选项添加为选项?如果是,则创建
<select name="property_category" id="property_category" class="in-field field width">
<option name="property_category" value="">Option1</option>
<option name="property_category1" value="">Option2</option>
</select>
我不确定你在做什么或他在做什么。
答案 2 :(得分:0)
'property_category'是您正在使用的ACTUAL名称吗?我不确定我是否明白了。
您可以为select标签制作标签。 或者,如果您想要“命名”选择框,只需松散地输入它。
<!--previous HTML code-->
Property category
<select name="property_category"><option <!-- php code -->></option></select>
Property category 1
<select name="property_category1"><option <!-- php code -->></option></select>