在使用vue的情况下,在输入框中添加

<textarea class="textarea" @click="isAndroid" :maxlength="30" :rows="1" placeholder="订单备注(30字以内)" v-model="remark"></textarea>
isAndroid(){if(/Android [4-6]/.test(navigator.appVersion)) {
       window.addEventListener("resize", function() {
        if(document.activeElement.tagName=="INPUT" || document.activeElement.tagName=="TEXTAREA") {
             window.setTimeout(function() {
             document.activeElement.scrollIntoViewIfNeeded();
            },0);
         }
        })
    }
 }

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-31
  • 2021-08-22
  • 2021-10-14
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-19
  • 2022-12-23
  • 2021-05-11
  • 2022-12-23
相关资源
相似解决方案