问问题
1162 次
2 回答
2
你可以试试
js
$(document).foundation('forms', {disable_class: 'no-custom'});
html
<select class="no-custom"></select>
于 2014-01-30T20:55:49.973 回答
0
抱歉挖掘了这个老话题,但给定的解决方案确实只删除了自定义 css,元素的事件处理程序仍然附加,所以你必须将它添加到你的元素:data-customforms="disabled"
禁用 Zurb 基金会将添加到的任何事件处理程序你的元素自动。
在示例中
<form class="custom">
<select class="custom">
<option>This one is a custom select element</option>
</select>
<select class="no-custom" data-customforms="disabled">
<option>This one is not a custom select element</option>
</select>
</form>
于 2015-10-21T21:05:04.353 回答