将两个属性添加到<select>

时间:2015-06-23 06:22:34

标签: html select

我有这个代码: &lt; select name =&#34; property_category&#34; ID =&#34; property_category&#34; class =&#34; in-field field width&#34;&gt; &lt; option value =&#34;&#34;&gt;&lt;?php echo apply_filters(&#39; epl_search_widget_label_any&#39;,__(&#39; Any&#39;,&#39; epl&#39; )); ?&GT;&LT; /选项&GT; 现在它使用property_category。我想添加另一个:property_category1,以便它使用两个名称。有人可以帮我代码吗? 谢谢!

3 个答案:

答案 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>