标签:实现 显示 代码实现 hold NPU 内容 count this bind
// wxml文件 <view> <input placeholder=‘‘ value="{{username}}" bindinput="handleName" bindblur="blurAccount"></input> <text class="placeholder" wx:if="{{placeAccount}}">账号</text> </view> // js文件 data: {placeAccount: true}, handleName() { // input输入事件 this.setData({ placeAccount: false }) }, blurAccount() { // input失焦事件 if (!this.data.username) { this.setData({ placeAccount: true }) } }
【小程序】---- input获得焦点时placeholder重影BUG
标签:实现 显示 代码实现 hold NPU 内容 count this bind
原文地址:https://www.cnblogs.com/pinkpinkc/p/12492518.html