- iPhone XS,iOS12.4.1,微信版本7.0.17 使用wx.chooseImage问题
iPhone XS,iOS12.4.1,微信版本7.0.17 使用wx.chooseImage 选择多张照片时,success回调中tempFiles列表只返回一张照片
2021-06-16 - 安卓textarea输入框
在安卓手机上,使用textarea输入框时,设置maxlength为10,在输入时,超过10后,字符长度仍在变化,但显示区域的内容长度为10 Page({ data: { focus: false, data: '', maxLength: 10 }, bindTextAreaBlur: function(e) { console.log(e.detail.value) }, onInput: function(e) { this.setData({ data: e.detail.value }) console.log('input', e.detail.value); } }) <view class="textarea-wrp"> <textarea auto-height bindblur="bindTextAreaBlur" maxlength="{{maxLength}}" bindinput="onInput" value="{{data}}" placeholder="请输入内容" /> <view>{{ data.length + '/'+ maxLength }}</view> </view>
2020-12-07 - 页面同时存在input和editor组件时点击input输入时触发editor的focus blur
页面同时存在input和editor组件时,在editor聚焦状态下点击input使其聚焦,在安卓手机vivox21上测试事件触发顺序为:editor失焦-->input聚焦-->editor聚焦-->editor失焦-->input失焦 [图片] 在ios上测试比较正常: [图片]
2020-06-22