小程序
小游戏
企业微信
微信支付
扫描小程序码分享
两个input都设置为type='text',切换的时候键盘会收起不弹出,体验很不友好,怎么解决?
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
如果有一个input的type设置成number就ok,但是两个都是text的就不行,一个框有焦点的时候直接点击另外一个输入框获取焦点,键盘会消失。。。也是很奇怪。。。(两个type都是text,布局属性啥的都一样,就第二个多一个password='true')
<view class="horview" style="margin-top:180rpx;">
<view class='title'>账户名</view>
<input class='inputview' placeholder="请输入账户名" type='text' placeholder-style='color:#999;' maxlength="30" bindinput='usernameInput' value='{{userName}}' />
</view>
<view class="horview" style="margin-top:30rpx;">
<view class='title'>密码</view>
<input class='inputview' password='true' type='text' placeholder="请输入密码" placeholder-style='color:#999;' maxlength="20" bindinput='passwordInput' value='{{password}}' />
.inputview {
color: #333;
font-size: 32rpx;
width: 85%;
height: 90rpx;
}
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
如果有一个input的type设置成number就ok,但是两个都是text的就不行,一个框有焦点的时候直接点击另外一个输入框获取焦点,键盘会消失。。。也是很奇怪。。。(两个type都是text,布局属性啥的都一样,就第二个多一个password='true')
<view class="horview" style="margin-top:180rpx;">
<view class='title'>账户名</view>
<input class='inputview' placeholder="请输入账户名" type='text' placeholder-style='color:#999;' maxlength="30" bindinput='usernameInput' value='{{userName}}' />
</view>
<view class="horview" style="margin-top:30rpx;">
<view class='title'>密码</view>
<input class='inputview' password='true' type='text' placeholder="请输入密码" placeholder-style='color:#999;' maxlength="20" bindinput='passwordInput' value='{{password}}' />
</view>
.inputview {
color: #333;
font-size: 32rpx;
width: 85%;
height: 90rpx;
}