小麦博客

开发中遇到的问题

1.ios 弹框输入导致光标错位

//解决方法
var ua = navigator.userAgent;
if (ua.indexOf('iPhone') > 0 || ua.indexOf('iPad') > 0) { //键盘收齐页面空白问题
    document.body.scrollTop = document.body.scrollHeight;
}

2.小程序设置margin-right无效

// 解决方法    給盒子添加
 box-sizing:border-box;

3.解决禁止屏幕滚动

watchTouchmove(){
   //解决屏幕滚动
  let dome = document.querySelectorAll('.page');
   dome[0].addEventListener('touchmove', function(e){
      e.preventDefault();
   }, { passive: false });
}
打赏本文
二维码

13

文章

8

标签

 文章分类