如题:
xml:
<text bindtap='getVerificationCode' style='position:absolute;right:70rpx;color: {{timeColor}};font-size:30rpx;'>{{time}}</text>
js:
getVerificationCode: function() {
var that = this
if (that.data.sendCodeNewrequst.mobileAccount.length != '11' || that.data.timeColor == '#999999') {
return;
}
that.getcode();
},
安卓根本就不执行getVerificationCode()方法,之前是好的,突然就点击没用了
你好,试了下,安卓的text绑定bintap事件是没有问题的,请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
<view class="identifyingCode" style='height:128rpx;'>
<input type="number" name="code" placeholder="请输入验证码" maxlength='4' focus='{{code_focus}}' bindinput='codeInput' style='margin-left:100rpx;width:300rpx' />
<!-- <button bindtap='getVerificationCode' disabled='{{disabled}}' style='color: #333333; background-color: white;font-size:30rpx;'>{{time}}</button> -->
<text bindtap='getVerificationCode' style='position:absolute;right:70rpx;color: {{timeColor}};font-size:30rpx;'>{{time}}</text>
</view>
已经解决了,之前没有限制input的width。但是上个周就可以不给input加限制
哈哈,不告诉你
真想给你个眼神,让你体会一下
换成view试下
换成view也不行