您现在的位置是:首页 > 教程 > pbootcms教程pbootcms教程
pbootcms自动判断跳转到手机端的写法
秋荷2024-12-19 14:06:48pbootcms教程已有人查阅
导读function browserRedirect() {var sUserAgent= navigator.userAgent.toLowerCase();var bIsIpad= sUserAgent.match(/ipad/i) == "ipad";
<script>
function browserRedirect() {
var sUserAgent= navigator.userAgent.toLowerCase();
var bIsIpad= sUserAgent.match(/ipad/i) == "ipad";
var bIsIphoneOs= sUserAgent.match(/iphone os/i) == "iphone os";
var bIsMidp= sUserAgent.match(/midp/i) == "midp";
var bIsUc7= sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
var bIsUc= sUserAgent.match(/ucweb/i) == "ucweb";
var bIsAndroid= sUserAgent.match(/android/i) == "android";
var bIsCE= sUserAgent.match(/windows ce/i) == "windows ce";
var bIsWM= sUserAgent.match(/windows mobile/i) == "windows mobile";
if (bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) {
window.location.href='http://ebingou.cn/';
} else {
}
}
browserRedirect();
</script>
(function(){
try {
var urlhash = window.location.hash;
if (!urlhash.match("fromapp")) {
if ((navigator.userAgent.match(/(iPhone|iPod|Android|ios|iPad)/i))) {
window.location = "https://www.ebingou.cn/";
}
}
}
catch (err) {
}
})();
本文标签:
很赞哦! ()
随机图文
-
pbootcms全站模板date时间标签/时间格式常见的调用写法
列表页时间:[list:date] 效果:2021-12-06 09:12:30 列表页时间:[list:date style=Y-m-d] 效果:2021-12-06 列表页时间:[list:date style=Y 效果:2021 -
pbootcms后台内容列表增添头条显示开关的实现方法
上周碰到群友来咨询想在后台内容列表处增加头条开关按钮,这里分享下如何增加,碰到些网站特殊需求情况下会用到的,一般没必要增加。 -
pbootcms模板详情页实现调用指定栏目的文章写法
pbootcms模板详情页如何调用指定栏目的文章{pboot:list scode=2 num=5 order=sorting}标题:[list:tITle lencn=20][list:date style=Y-m-d]描述 -
PbootCMS灵活多层级URL地址模式配置方法
PbootCMS已经非常灵活的支持多层级URL地址模式,自定义包含如下情况:1、栏目自定义:只需要在栏目的URL名称中进行定义即可,如下图:
留言与评论 (共有 条评论) |