(function($){ var url = window.location.href; // 判断是不是手机端 $.isPhone = function(){ if (/(iPhone|iPad|iPod|iOS|Android)/i.test(navigator.userAgent)) { //移动端 return true; } return false; }; if($.isPhone()){ if(url.indexOf(/mobile/) < 0){ window.location.href= url.replace(/\/static\//,'/static/mobile/'); } }else{ if(url.indexOf(/mobile/)>=0){ window.location.href= url.replace(/\/mobile\//,'/'); } } })($);