900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > 手机端打开网页跳转到移动端页面方法

手机端打开网页跳转到移动端页面方法

时间:2024-05-05 09:40:27

相关推荐

手机端打开网页跳转到移动端页面方法

利用匿名函数自调用及正在判断实现

如果没有ssl证书 https ==> http 就可以了

(function(Switch) {var switch_pc = window.location.hash;var curURL = document.location.href; //当前URLvar isMobile = curURL.indexOf("https://m."); //判断当前URL是否是手机站var isPc = curURL.indexOf("https://www."); //判断当前URL是否包含"https://www."if (isMobile < 0) { //不是手机站if (isPc < 0) { //不包含"https://www."var thisURL = curURL.replace(/^https:\/\//, "https://m.");} else { // 包含"https://www."var thisURL = curURL.replace(/^https:\/\/www\./, "https://m.");}}if (switch_pc != "#pc") {if (/iphone|ipod|ipad|ipad|Android|nokia|blackberry|webos|webos|webmate|bada|lg|ucweb|skyfire|sony|ericsson|mot|samsung|sgh|lg|philips|panasonic|alcatel|lenovo|cldc|midp|wap|mobile/i.test(navigator.userAgent.toLowerCase())) {Switch.location.href = thisURL;}document.write('<meta name="mobile-agent" content="format=html5;url=' + thisURL + '" />');}})(window);

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。