【发布时间】:2016-02-03 10:13:40
【问题描述】:
我在我的项目中使用selectBoxIt 组件。我想改变风格,像这样:
我使用下一个代码来实现这个组件:
<select id="appVersions">
<option ng-repeat="app in appVersions" value="{{app.version}}">APP vr.{{app.version}}</option>
</select>
var apps = $('#appVersions').selectBoxIt({
theme: 'jqueryui',
autoWidth: true
});
$timeout(function () {
apps.data('selectBox-selectBoxIt').refresh();
});
但是当他转换为默认样式后,如何更改样式? 非常感谢。
【问题讨论】:
标签: javascript jquery angularjs selectboxit