我在基础css框架中的自定义表单中动态添加选择框时遇到问题。如果我在表单中添加了select类名为“custom”的表单。仅添加了普通样式选择框。
<pre>
var createdRow ="<tr><td><select><option value='1'>1</option></select></td></tr>";
jQuery('#roomsDetails tbody').append(createdRow);
</pre>
答案 0 :(得分:6)
在添加select
后运行此代码Foundation.libs.forms.assemble();
答案 1 :(得分:0)
如果您想为元素添加样式,只需使用jQuery('option').addClass('some css class');
或jQuery('option').css('property', 'value');