判断手机系统是否为ios
function () { var UA = navigator.userAgent; if (UA.match(/iPad/) || UA.match(/iPhone/) || UA.match(/iPod/)) { return true; }else{ return false; } }
function () { var UA = navigator.userAgent; if (UA.match(/iPad/) || UA.match(/iPhone/) || UA.match(/iPod/)) { return true; }else{ return false; } }