h5移動(dòng)端頁(yè)面鍵盤彈出后,body的高度變了,就導(dǎo)致原本高度100%的背景圖下面缺了一截,需要把div的高度強(qiáng)行設(shè)回100%才能解決這個(gè)問(wèn)題
<div class="app" :style="{ height: bodyHeight + 'px' }"></div>
mounted(){
this.bodyHeight=document.documentElement.clientHeight
}
把a(bǔ)pp的高度強(qiáng)行設(shè)置為html原本的100%,就行了。
以上內(nèi)容是借鑒其他大神的