ytxbnahn / blog

my blog
1 stars 0 forks source link

移动端问题 #17

Open ytxbnahn opened 6 years ago

ytxbnahn commented 6 years ago

input 问题

参考链接 安卓手机 input弹出被挡住

window.addEventListener('resize', function() { if( document.activeElement.tagName === 'INPUT' || document.activeElement.tagName === 'TEXTAREA' ) { window.setTimeout(function() { if('scrollIntoView' in document.activeElement) { document.activeElement.scrollIntoView(); } else { document.activeElement.scrollIntoViewIfNeeded(); } }, 0); } });

ytxbnahn commented 5 years ago

图片上传问题

ios 手机上传图片当图片过大时,会出现报错需要对图片压缩, Android 手机图片上传,当开启拍摄上传图片会造成图片上传失败,具体原因不详。不填加accept

ytxbnahn commented 4 years ago

参考链接