欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > 其他教程 >
其他教程

JS PC站跳转手机站代码

(元素模板) / 2022-11-16 21:02
如何使用js 让PC站跳转到手机站对应页面,用下面代码即可一步完成
<script type="text/javascript">

(function () {

var ua = navigator.userAgent.toLowerCase();

var bIsIpad = ua.match(/ipad/i) == "ipad";

var bIsIphoneOs = ua.match(/iphone os/i) == "iphone os";

var bIsAndroid = ua.match(/android/i) == "android";

var bIsWM = ua.match(/windows mobile/i) == "windows mobile";

var host = "http://www.ys720.com";

var pathname = window.location.pathname;

if (bIsIpad || bIsIphoneOs || bIsAndroid || bIsWM) {

window.location.href = host + pathname;

}

})();

</script>

Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com