如何在基础框架中动态添加自定义表单中的选择框

时间:2013-03-16 10:19:33

标签: zurb-foundation

我在基础css框架中的自定义表单中动态添加选择框时遇到问题。如果我在表单中添加了select类名为“custom”的表单。仅添加了普通样式选择框。

<pre>
var createdRow ="<tr><td><select><option value='1'>1</option></select></td></tr>";                       
jQuery('#roomsDetails tbody').append(createdRow);
</pre>

2 个答案:

答案 0 :(得分:6)

在添加select

后运行此代码
Foundation.libs.forms.assemble();

答案 1 :(得分:0)

如果您想为元素添加样式,只需使用jQuery('option').addClass('some css class');jQuery('option').css('property', 'value');