// 是否是手机端
var iswap = function(){
if (/(Mobile|Android|WAP|NetFront|JAVA|OperasMini|UCWEB|WindowssCE|Symbian|Series|webOS|SonyEricsson|Sony|BlackBerry|Cellphone|dopod|Nokia|samsung|PalmSource|Xphone|Xda|Smartphone|PIEPlus|MEIZU|MIDP|CLDC)/i.test(navigator.userAgent)) {
return "android";
}else if(/(iPhone)/i.test(navigator.userAgent)) {
return "iphone";
}else{
if(/(mozilla|chrome|safari|opera|m3gate|winwap|openwave)/i.test(navigator.userAgent)) {
return false;
}else{
if(getUrlPre('mobile')) {
return true;
}else{
return false;
}
}
}
}