热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

mpvue微信小程序input点击键盘完成或搜索按钮触发confirm事件

添加属性confirm-type“search”键盘回车键完成变成搜索添加属性confirm“searchClick()”点击回车键(完成或搜索)时触发

添加属性confirm-type=“search” 键盘回车键完成变成搜索
添加属性@confirm=“searchClick()” 点击回车键(完成或搜索)时触发confirm事件
小程序官方input介绍网址

//template部分
<input v-model&#61;"inputSearch" placeholder&#61;"请输入关键词" placeholder-style&#61;"color:#aaa;" confirm-type&#61;"search" &#64;input&#61;"toInput()" &#64;confirm&#61;"searchClick()" &#64;focus&#61;"focus" &#64;blur&#61;"blur">//methods部分
// 小程序 点击搜索 按钮时 事件
confirm(e) {//方法。。。
},


推荐阅读
author-avatar
BELLICOSE牛仔
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有