AngularJS ui-select允许只写数字

时间:2017-01-25 07:32:56

标签: javascript angularjs ui-select

我接着是这个答案 https://stackoverflow.com/questions/29489821/allow-manually-entered-text-in-ui-select#=

但是在向ng-model-options="{ debounce: 500 }"添加ui-select时遇到问题,不再有效。任何解决方法?

在Github上找到了这个,所以还没有解决 https://github.com/angular-ui/ui-select/issues/855

1 个答案:

答案 0 :(得分:0)

您可以使用“ui-select-search”类强制输入ui-select中的输入为数字类型。

就像这个例子:

$("#idUiSelect .ui-select-search").attr('type', 'number').attr("min","0");

我已经将JQuery用于了一段时间