1. 程式人生 > >H5 在安卓下input下面按鈕被頂上來解決方法

H5 在安卓下input下面按鈕被頂上來解決方法

data () {
    return {
       clientHeight: document.documentElement.clientHeight
    }
}
mounted () {
    var n = navigator.userAgent
    if (n.indexOf('iPhone') <= -1) {
      window.onresize = () => {
        if (this.clientHeight > document.documentElement.clientHeight) {
          // 隱藏按鈕
          this.isShow = true
        } else {
          // 顯示按鈕 
          this.isShow = false
        }
      }
    }
  }