我想使用具有多个宽度的多个选择框和 uniform 。问题是当我这样做时
$('#small').uniform({selectClass:'smallSelect'});
$('#big').uniform({selectClass:'bigSelect'});
<select id="small">
<option>test</option>
</select>
<select id="big">
<option>test2</option>
</select>
只有第一个被应用,即 bigSelect 被忽略。