Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<title>Js判断手机移动设备是Android平台还是ios平台</title>
<script>
if (/android/i.test(navigator.userAgent)){
// todo : android
}
if (/ipad|iphone|mac/i.test(navigator.userAgent)){
// todo : ios
</script>
<body>请参见代码!</body>
CSS代码...
xxxxxxxxxx
JS代码...