h 5携帯端末のinputキーボードからページが立ち上がり、ページに載せられないとinputキーボードが引っ張られます.
8056 ワード
1.トップページ(キーボードが引っ張られると移動内容の位置->箱の内容の高度位置決めmaginなど)
2.ページを持ち上げられない(箱の高さを固定する)
3.input原生キーボードイベントの禁止
<div v-for="(item, index) in formList" class="formList" :key="index">
<input v-model="dataValue[item.alias]"
:placeholder="item.placeholder"
:type="item.type"
:error="errorInfo[item.alias]"
@focus="onFocus(item.alias)" @blur="onBlur()" onkeyup="this.value=this.value.replace(/\s+/g,'')"/>
methods: {
onFocus (key) {
var ele = document.getElementsByClassName('button_footer')[0]
ele.style.position = 'static'
ele.style.marginTop = '4.68rem'
ele.style.width = '100%'
},
onBlur () {
var ele = document.getElementsByClassName('button_footer')[0]
ele.style.position = 'fixed'
ele.style.bottom = '0.88rem'
ele.style.width = 'calc(100% - 0.8rem)'
}
}
転載:https://blog.csdn.net/liurong1028/article/details/84787651 2.ページを持ち上げられない(箱の高さを固定する)
var hrt = document.documentElement.clientHeight; // hrt
window.onload = function(){ //
document.getElementById('app').style.height= hrt+'px'// div
}
転載:https://blog.csdn.net/chensvv/article/details/81205417?utm_medium=distribute.pc_relevant_t 0.none-task-blog-Blog Command Froom MachineLearnPai 2-1.nonecase&depth_1-utm_source=distribute.pc_relevant_t 0.none-task-blog-Blog Command Froom MachineLearnPai 2-1.nonecase3.input原生キーボードイベントの禁止
<van-field
v-model="infoList.idCardNumber"
type="text"
name=" "
label=" "
placeholder=" "
maxlength="18"
@focus="focus"
/>
//
focus(e) {
console.log(e, "focusfocusfocus");
document.activeElement.blur();
this.show = true;
},