收藏
回答

text上加bindtap,安卓点击text没反应,苹果没有这个问题

框架类型 问题类型 API/组件名称 终端类型 操作系统 微信版本 基础库版本
小程序 Bug text 客户端 Android 6.6.7 2.1.1

如题:

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()方法,之前是好的,突然就点击没用了

回答关注问题邀请回答
收藏

3 个回答

  • 疯狂的小辣椒
    疯狂的小辣椒
    2018-07-05

    你好,试了下,安卓的text绑定bintap事件是没有问题的,请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2018-07-05
    有用
    回复 1
    • Hemerocallis
      Hemerocallis
      2018-07-05

      <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加限制

      2018-07-05
      回复
  • 小石头
    小石头
    2018-07-05

    哈哈,不告诉你

    2018-07-05
    有用
    回复 1
    • Hemerocallis
      Hemerocallis
      2018-07-05

      真想给你个眼神,让你体会一下

      2018-07-05
      回复
  • 朱志坤
    朱志坤
    2018-07-05

    换成view试下

    2018-07-05
    有用
    回复 1
    • Hemerocallis
      Hemerocallis
      2018-07-05

      换成view也不行

      2018-07-05
      回复
登录 后发表内容