随笔分类 -  移动端

移动端前端疑难点及攻克记录
移动端监听软键盘弹出收起
摘要:// 获取屏幕可用高度 var winHeight = $(window).height(); // 监听窗口变化 $(window).resize(function () { // 获取当前屏幕可用高度 var thisHeight = $(this).height(); if (winHeigh 阅读全文
posted @ 2021-11-17 11:17 夜攸 阅读(127) 评论(0) 推荐(0)
h5文件下载
摘要:// type1 await getFile(fileUrl).then((res) => { console.log('download',res); let bFile = window.URL.createObjectURL( new Blob([res]) ) this.download(b 阅读全文
posted @ 2021-11-01 13:39 夜攸 阅读(842) 评论(0) 推荐(0)