window.onload = function() {
var u = navigator.userAgent;
if(u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) { //安卓手机
//执行安卓的
//alert("azsj");
// window.location.href = "mobile/index.html";
} else if(u.indexOf('iPhone') > -1) { //苹果手机
//执行苹果的
// window.location.href = "mobile/index.html";
//alert("pgsj");
} else if(u.indexOf('Windows Phone') > -1) { //winphone手机
alert("WP版暂未开发!");
// window.location.href = "mobile/index.html";
}
}