if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
//iPhone 手机页面
window.location.href ="iPhone.html";
} else if (/(Android)/i.test(navigator.userAgent)) {
//安卓手机页面
window.location.href ="Android.html";
} else {
//电脑页面
window.location.href ="pc.html";
};