收藏
回答

体验版和真机下input组件bindinput事件无效?

微信版本号8.0.34

基础库2.7.1

<view class='btn-wrp'>
    <input class='name' value="{{info.loginId}}" data-type="loginId" bindinput='changeInput' placeholder="请输入手机号" />
    <input class='password'  value="{{info.password}}" data-type="password" bindinput='changeInput' password placeholder="请输入密码" />
    <view class='tips'>小程序仅限{{xcParam.name || 'Happykids美言美语'}}机构使用</view>
    <button type='primary' style="background: {{xcParam.color}};" bindtap='submit'>登录</button>
  </view>

changeInput: function (e) {
      console.log(222)
    this.data.info[e.currentTarget.dataset.type] = e.detail.value;
    console.log(this.data.info);
  },
回答关注问题邀请回答
收藏

2 个回答

  • 社区技术运营专员-Jahozheng
    社区技术运营专员-Jahozheng
    2023-04-07

    你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)

    2023-04-07
    有用
    回复
  • 那一抹笑😃 穿透阳光
    那一抹笑😃 穿透阳光
    2023-04-07

    经测试,没有任何问题

    2023-04-07
    有用
    回复
登录 后发表内容