手机网站通过JS判断是否为iPhone手机访问

// 判断是否为 iPhone手机系统 :
function isAppleMobile() {
return (navigator.platform.indexOf('iPad') != -1);
};

原文地址:https://www.cnblogs.com/yanzhijun/p/4111278.html