【发布时间】:2019-08-25 20:27:06
【问题描述】:
我有一个带有自动完成功能的 ion-searchbar 组件
<ion-searchbar #searchBar
no-padding
class="search-bar"
(ionInput)="getCustomers($event)"
[showCancelButton]="true"
[(ngModel)]="customer_text"
[autocomplete]="on"
(ionClear)="clearSearchBar()">
</ion-searchbar>
当离子搜索栏被聚焦时,只显示数字键盘。
我需要按数字搜索,但当用户从自动完成中选择一个选项时,我需要在搜索栏中显示数字和文本。
但是 html 5 验证 type=number 阻碍了搜索栏中的任何内容。
【问题讨论】:
标签: javascript html ionic-framework ionic3