cover-view 中添加 点击事件 <!-- cover-input伪代码实现 --> <cover-view class='cover_input' bindtap='tapInput'> <input class='input' value='{{searchKey}}' focus='{{inputFocus}}' bindblur='blurInput' bindconfirm='bindconfirm' bindinput="searchInput"></input> </cover-view> <!-- cover-input伪代码实现 --> 点击的时候 focus input,这时候 input (仅在focus时表现为原生组件), 生组件的层级是最高的 /** * 将焦点给到 input(在真机上不能获取input焦点) */ tapInput() { console.log('执行') this.setData({ //在真机上将焦点给input inputFocus:true, }); }, https://developers.weixin.qq.com/miniprogram/dev/component/native-component.html#%E5%8E%9F%E7%94%9F%E7%BB%84%E4%BB%B6%E7%9A%84%E4%BD%BF%E7%94%A8%E9%99%90%E5%88%B6[图片]
微信小程序的 cover-view 可以支持 input 组件吗?在微信小程序的开发中,地图界面上方需要 支持搜索功能,但是 map 上只能使用 cover-view,而 cover-view 又不支持嵌套 input 组件 [图片]
2020-12-14