Ionic2开发笔记——监听手机软键盘搜索键

2017-05-08  本文已影响0人  面向秋名山编程

遇到这个问题,说明对ionic2比较熟悉了,这些属性就不过多解释,直接上代码。

HTML页面代码

<!--action会刷新页面-->

<form class="form">

<ion-input type = "search" autocomplete="off" placeholder="搜索" [(ngModel)]="searchs" name="search">

<button (click)="search(searchs)" style="visibility:hidden;">

</form>

SCSS代码:

.form{

width: 100%;

display: flex;

justify-content: space-between;

align-items: center;

}

TS部分代码:

searchs:string;

search(){

alert("你点击了软键盘搜索键搜索"+this.searchs);

}

上一篇下一篇

猜你喜欢

热点阅读