溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

vue如何解決文本框被鍵盤遮住的問題

發(fā)布時(shí)間:2021-07-21 11:15:07 來源:億速云 閱讀:1061 作者:小新 欄目:web開發(fā)

小編給大家分享一下vue如何解決文本框被鍵盤遮住的問題,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

如下所示:

vue如何解決文本框被鍵盤遮住的問題

vue如何解決文本框被鍵盤遮住的問題

我把它寫成了組件

主要代碼是

document.getElementById(this.FullScreenId).scrollTop = document.getElementById(this.FullScreenId).scrollHeight

我這邊把div滿屏了看下面css就知道了

你也可以使用body,這個(gè)你行百度一下就可以了

注意點(diǎn)是css

/* 頁面滿屏 */
.pageFullScreen {
 height: 100%;
 position: absolute;
 top: 0;
 right: 0;
 bottom: 0;
 left: 0;
 overflow: auto;
}

父組件

<style>
</style>
<template>
 <div id="testFullScreenId" class="pageFullScreen">
  <div ></div>
   <inputList type="test" @inputListClick="inputListClick" FullScreenId="testFullScreenId" v-model="inputVal" @inputListFocus="focus" @inputListBlur="blur"></inputList>
   <br />
   <button @click="sub">獲取input值</button>
   <br />
   <inputList type="test" @inputListClick="inputListClick" FullScreenId="testFullScreenId" v-model="inputVal" @inputListFocus="focus" @inputListBlur="blur"></inputList>
 </div>
</template>
<script>
 import inputList from '../../components/input' // input
 export default {
  components: {
   inputList
  },
  data() {
   return {
    imagesUrl: { // 排版圖片使用懶加載
    },
    inputVal: ''
   }
  },
  created() {
  },
  mounted() {
  },
  methods: {
   focus(e) {
    console.log(e)
   },
   blur(e) {
    console.log(e)
   },
   inputListClick(e) {
    console.log(e)
   },
   sub() {
    alert(this.inputVal)
    console.log(this.inputVal)
   }
  }
 }
</script>

子組件

<style>
.inputList {}
</style>
<template>
 <!-- 父組件使用v-model發(fā)送input事件就可以接收到了 -->
 <div class="inputList">
  <input :type="type" @click="inputListClick($event)" @input="inputListInput($event)" @focus="inputListFocus($event)" @blur="inputListBlur($event)">
 </div>
</template>
<script>
 export default {
  name: 'inputList',
  props: {
   type: { // 文本框類型
    type: String,
    default: 'text'
   },
   FullScreenId: { // 文本框被鍵盤遮住
    type: String,
    default: ''
   }
  },
  data() {
   return {
    imagesUrl: { // 排版圖片使用懶加載
    },
    pageHeightOne: '', // 頁面高度
    pageHeightTow: ''
   }
  },
  created() {
  },
  mounted() {
   // window.onresize監(jiān)聽頁面高度的變化
   window.onresize = () => {
    return (() => {
     // window.scroll(0, 0) // 滾到頂部
     document.getElementById(this.FullScreenId).scrollTop = document.getElementById(this.FullScreenId).scrollHeight
    })()
   }
  },
  methods: {
   // 鍵盤輸入
   inputListInput(e) {
    if (typeof e.target.value === 'string') {
     if (/[\u4e00-\u9fa5]/.test(e.target.value)) {
      e.target.value = ''
     } else {
      // console.log('合格')
     }
    } else {
     console.log('數(shù)據(jù)類型不正確')
    }
    this.$emit('input', e.target.value)
   },
   // 獲取焦點(diǎn)
   inputListFocus(e) {
    // console.log(e)
    this.$emit('inputListFocus', 'focus')
   },
   // 失去焦點(diǎn)
   inputListBlur(e) {
    // console.log(e)
    this.$emit('inputListBlur', 'blur')
   },
   // 點(diǎn)擊
   inputListClick(e) {
    this.$emit('inputListClick', 'click')
   }
  }
 }
</script>

以上是“vue如何解決文本框被鍵盤遮住的問題”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vue
AI