小程序
小游戏
企业微信
微信支付
扫描小程序码分享
如图所示,只要是 input type=‘password’ 的输入框,在输入密码后,就会自动弹出这个 “存储密码” 的提示,而且是每次都提示,真的很烦。
有没有什么办法可以不弹出这个提示框?
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
关闭存储密码提示,需要 <input type="password" /> 之前不要有 <input /> ,可以伪造 <input />,然后使用相同的样式。
WXML:
<input wx:if="{{showingRealInput}}" value="{{values.account}}" focus="{{focuses.account}}" bindblur="hideRealInput" /> <view wx:else bindtap="showRealInput" class="fake-input">{{values.account}}</view>
JS:
Page({ data: { focuses: {}, values: {}, showingRealInput: false, // this prevents auto-save password in iOS }, showRealInput() { this.setData({ showingRealInput: true, focuses: { account: true }, }) }, hideRealInput() { this.setData({ showingRealInput: false, }) }, })
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
这个是系统自带的功能。自己模拟password框就不弹出了
这是ios系统支持的功能吧,你可以自己用一个普通input实现一个密码框的效果
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
关闭存储密码提示,需要 <input type="password" /> 之前不要有 <input /> ,可以伪造 <input />,然后使用相同的样式。
WXML:
<input wx:if="{{showingRealInput}}" value="{{values.account}}" focus="{{focuses.account}}" bindblur="hideRealInput" /> <view wx:else bindtap="showRealInput" class="fake-input">{{values.account}}</view>
JS:
Page({ data: { focuses: {}, values: {}, showingRealInput: false, // this prevents auto-save password in iOS }, showRealInput() { this.setData({ showingRealInput: true, focuses: { account: true }, }) }, hideRealInput() { this.setData({ showingRealInput: false, }) }, })
这个是系统自带的功能。自己模拟password框就不弹出了
这是ios系统支持的功能吧,你可以自己用一个普通input实现一个密码框的效果