小程序
小游戏
企业微信
微信支付
扫描小程序码分享
安卓手机存在问题,×按钮无法清空数据,会在失去焦点的时候×按钮也同时隐藏了,求解?
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
代码没有问题。
是不是Android下点X清空不了Input?
iPhone没问题?
hidden改wx:if试试?
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
估计是hidden的锅?
换成wx:if="{{closeImg}}"
==============
最终解决方案:
clearCloseInput里设置closeImg:false
在inputBlur里延时10毫秒设置closeImg:false
inputBlur: function (e) { setTimeout(function(){ this.setData({ closeImg: false }) }.bind(this), 10) }
若认为该回答有用,给回答者点个[ 有用 ],让答案帮助更多的人
inputBlur: function (e) {
setTimeout(function(){
this.setData({
closeImg: false
})
}.bind(this), 10)
}
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
提供个可复现问题的代码片段。我手机跑下看看https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
代码没有问题。
是不是Android下点X清空不了Input?
iPhone没问题?
https://developers.weixin.qq.com/community/develop/doc/000648216f055032f63af30515bc00?highLine=input
跟你一样情况的一个用户。input清空无效果。
估计是hidden的锅?
换成wx:if="{{closeImg}}"
==============
最终解决方案:
clearCloseInput里设置closeImg:false
在inputBlur里延时10毫秒设置closeImg:false
inputBlur: function (e) { setTimeout(function(){ this.setData({ closeImg: false }) }.bind(this), 10) }
若认为该回答有用,给回答者点个[ 有用 ],让答案帮助更多的人
inputBlur里的closeImg:false移到clearCloseInput
inputBlur: function (e) {
setTimeout(function(){
this.setData({
closeImg: false
})
}.bind(this), 10)
}
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
提供个可复现问题的代码片段。我手机跑下看看https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html