- 如何解决在t-input中使用Face ID输入密码后不触发change事件,如何获取输入密码内容?
<view class="password-login-block" wx:if="{{!phoneNumberLogin}}"> <view class="input-block"> <t-input class="input" adjust-position="{{true}}" label="用户账号:" placeholder="请输入账号" maxlength="16" value="{{account}}" bindchange="onAccountInput" bind:clear="clearAccountInput" clearable /> </view> <view class="input-block"> <t-input class="input" adjust-position="{{true}}" label="用户密码:" placeholder="请输入密码" maxlength="16" value="{{password}}" bindchange="onPasswordInput" bind:focus="passwordFocus" bind:clear="clearPasswordInput" type="password" clearable /> </view> <view class="forget-password text-subtitle-color"> <text bind:tap="resetPassword">忘记密码?</text> </view> </view> 直接使用苹果Face ID输入账号和密码,密码填充后“焦点”还是处于密码开头,未触发change事件,获取不到用户的输入内容。如何解决?
2024-03-15 - App 纯签约中,签约完成后,页面中的“完成”按钮点击无反应
App 纯签约中,签约完成后,微信中的成功页面中的“完成”按钮点击无反应
2021-06-21