中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

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

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

如下所示:

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

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

我把它寫成了組件

主要代碼是

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

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

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

注意點是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發送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監聽頁面高度的變化
   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('數據類型不正確')
    }
    this.$emit('input', e.target.value)
   },
   // 獲取焦點
   inputListFocus(e) {
    // console.log(e)
    this.$emit('inputListFocus', 'focus')
   },
   // 失去焦點
   inputListBlur(e) {
    // console.log(e)
    this.$emit('inputListBlur', 'blur')
   },
   // 點擊
   inputListClick(e) {
    this.$emit('inputListClick', 'click')
   }
  }
 }
</script>

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

霞浦县| 保靖县| 文成县| 图们市| 湟源县| 上林县| 木里| 仙桃市| 苗栗市| 万州区| 哈尔滨市| 灵丘县| 利川市| 苍梧县| 荥经县| 游戏| 武邑县| 玉环县| 嘉定区| 沛县| 文水县| 克山县| 阿拉善左旗| 光泽县| 盖州市| 紫阳县| 江川县| 茌平县| 漳州市| 都兰县| 绥江县| 平度市| 台南县| 平顶山市| 宿松县| 卓尼县| 石首市| 双柏县| 霍林郭勒市| 班戈县| 招远市|