meta
<meta name="apple-mobile-web-app-capable" content="yes"> //网站开启对web app程序的支持
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
//在web app应用下状态条(屏幕顶部条)的颜色;默认为default(白色),可以定为black(黑色)和black-translucent(灰色半透明)。
<meta http-equiv="content-type" content="text/html; charset=gb2312"> //定义字符集
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1, user-scalable=no"> //禁用手机端缩放,注意对pc端浏览器无效
<meta name="apple-touch-fullscreen" content="YES" /> //"添加到主屏幕“后,全屏显示
<meta name="apple-mobile-web-app-capable" content="yes" />//删除默认的苹果工具栏和菜单栏。
<meta name="format-detection" content="telephone=no"/>//告诉设备忽略识别页面中的电话号码和邮箱号
CSS
* {
/*禁止长按选中*/
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
/*阻止ios下点击区域变暗*/
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
img{
/*阻止长按图片另存为*/
pointer-events:none
}
播放音频
ios下无法自动播放音频
- ios下只能通过用户交互播放音频,无法自动播放,但在wx中可以通过如下方式解决
//预加载,且ios下必须通过该方式先加载一遍,才能正常播放音频
document.addEventListener("WeixinJSBridgeReady", function () {
//微信加载完毕,不同于wx.ready,不需要config
document.getElementById('over').play();
}, false);
刷新页面
- Android只能使用
window.location.href = location.href
,IOS只能使用window.location.reload()
var u = navigator.userAgent, app = navigator.appVersion;
var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Linux') > -1; //g
var isIOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
if (isAndroid) {
window.location.href = location.href;
}
if (isIOS) {
window.location.reload()
}
禁用video自动全屏
IOS
在ios下video一旦播放就会自动全屏,且自带进度条和暂停键等,此时若想屏蔽该功能,可以加上
playsinline="true" webkit-playsinline="true"
You must set this property to play inline video. Set this property to true to play videos inline. Set this property to false to use the native full-screen controller. When adding a video element to a HTML document on the iPhone, you must also include the playsinline attribute.
Apps created before iOS 10.0 must use the webkit-playsinline attribute.
安卓
x5-playsinline="true" x5-video-player-type="h5"
使用overflow:auto和scroll时出现滑动不顺畅问题
- 为
overflow: scroll
元素增加属性-webkit-overflow-scrolling: touch;
,可启用硬件加速,变得顺畅。 - 给予子元素一个min-height,大小不限,帮助浏览器建立ScrollView。
禁用微信浏览器橡皮筋效果
- 给html和body固定定位 (但是会造成页面无法滚动)
- 禁用touchmove默认事件
document.body.addEventListener('touchmove', function (e) {
e.preventDefault(); //阻止默认的处理方式(阻止下拉滑动的效果)
}, {passive: false}); //passive 参数不能省略,用来兼容ios和android
IOS中的日期兼容问题
safari无法解释YYYY-MM-DD HH:mm:ss
这样的时间格式,需转换为IOS的YYYY,MM, DD,HH,mm,ss
格式或通用的YYYY/MM/DD HH:mm:ss
格式
var arr = "2016/11/11 11:11:11".split(/[- : \/]/),
date = new Date(arr[0], arr[1]-1, arr[2], arr[3], arr[4], arr[5]);
document.write(date);
URL编码
通常URL中输入中文或特殊符号时会被自动转码,但有的手机(华为)会认为转码过程是一次路由跳转,因此导致返回时返回到转码前,然后再次转码,无限循环,无法返回
另外有些环境(手淘)中URL不支持自动转码,因此建议使用encodeURI
和encodeURIComponent
-
encodeURI
方法不会对下列字符编码 ASCII字母、数字、~!@#$&*()=:/,;?+'
适用于对query参数进行编码 -
encodeURIComponent
方法不会对下列字符编码 ASCII字母、数字、~!*()'
编码的范围更大,适用于对整个URL进行编码
IOS12.1时出现的输入法获得的验证码会输入两遍的问题
某些app或者微信网页里复制验证码时IOS会触发UITextFieldTextDidChangeNotification监听事件,导致验证码出现了两次,通过限制html页面中input的maxlength
可以规避掉这个系统bug
<input type=number/>
中maxlength
无效,可通过监听oninput
限制长度
<input type="number" pattern="\d*" oninput="if(value&&value.length>6)value=value.slice(0,6)"/>
input输入框调用九宫格数字键盘
<input type="number" pattern="\d*"/>
部分ios中,window、document、body的click无效
在部分ios中,只有button
、a
即使没有绑定click
回调也会向上冒泡。对div
、span
等只有自己具有click
时才会向上冒泡。
- 使用
touchend
代替click
- 将
click
改为绑定在内部的容器元素上(如div.container) - 为内部元素绑定空的
click
事件处理函数
<div id="20" onclick="">click me</div>
$("body span").bind("click",function(){})
safari中页面高度问题
使用高度100vh时:100vh=当前视口可见高度 底部工具栏会占用视口底部约80px高度,通过window.innerHeight
可以获得网页可展示部分实际高度