我在一些AngularJS代码中看到了一个 ui-select2 属性:
<select ui-select2 name="..." ng-model="..." ng-options="...">
这是什么意思?
我在一些AngularJS代码中看到了一个 ui-select2 属性:
<select ui-select2 name="..." ng-model="..." ng-options="...">
这是什么意思?
ui-select2 指令实际上不是 AngularJS 的一部分,它来自 AngularUI:
http://angular-ui.github.com/#directives-select2。
正如您在链接中看到的,ui-select2 指令只是将 Select2 jQuery 插件与 AngularJS 集成的包装器。基本上,一个增强的组合框。