
js判断是否手机端,相对域名跳转到对应的m.手机站
<script type="text/javascript">(function(Switch) { var switch_pc = window.location.hash; var curURL = document.location.href; //当前URL var isMobile = curURL.indexOf("http://m."); //判断当前URL是否是手机站 var isPc = curURL.indexOf("http://www."); //判断当前URL是否包含"http://www." if (isMobile < 0) { //不是手机站 if (isPc < 0) { //不包含"http://www." var thisURL = curURL.replace(/^http:\/\//, "http://m."); } else { // 包含"http://www." var thisURL = curURL.re...