当前位置:网站首页>根据设备信息进行页面跳转至移动端页面或者PC端页面
根据设备信息进行页面跳转至移动端页面或者PC端页面
2022-07-07 08:10:00 【weixin_42178670】
代码如下:
function browserRedict(pcurl, moburl) {
let userAgentInfo = navigator.userAgent.toLowerCase();
let device = /ipad|iphone|midp|rv:1.2.3.4|ucweb|android|windows ce|windows mobile/;
if(device.test(userAgentInfo)){
window.location.href = moburl;
} else {
window.location.href = pcurl;
}
};
browserRedict("pc.example.com", "mob.example.com");
边栏推荐
- The landing practice of ByteDance kitex in SEMA e-commerce scene
- Web3.0 series distributed storage IPFs
- 官媒关注!国内数字藏品平台百强榜发布,行业加速合规健康发展
- Factorial implementation of large integer classes
- Programming features of ISP, IAP, ICP, JTAG and SWD
- Chris LATTNER, the father of llvm: why should we rebuild AI infrastructure software
- request对象对请求体,请求头参数的解析
- LLVM之父Chris Lattner:为什么我们要重建AI基础设施软件
- Official media attention! The list of top 100 domestic digital collection platforms was released, and the industry accelerated the healthy development of compliance
- Fiddler break point
猜你喜欢

Programming features of ISP, IAP, ICP, JTAG and SWD

STM32 ADC and DMA

arcgis操作:dwg数据转为shp数据

Use of JSON extractor originals in JMeter

Postman interface test II

mysql插入数据创建触发器填充uuid字段值

The Hal library is configured with a general timer Tim to trigger ADC sampling, and then DMA is moved to the memory space.

request对象对请求体,请求头参数的解析

STM32中AHB总线_APB2总线_APB1总线这些是什么

基于gis三维可视化技术的智慧城市建设
随机推荐
LLVM之父Chris Lattner:为什么我们要重建AI基础设施软件
Wallys/IPQ6010 (IPQ6018 FAMILY) EMBEDDED BOARD WITH ON-BOARD WIFI DUAL BAND DUAL CONCURRENT
ISP、IAP、ICP、JTAG、SWD的编程特点
Kotlin实现微信界面切换(Fragment练习)
arcgis操作:dwg数据转为shp数据
【acwing】786. 第k个数
Factorial implementation of large integer classes
ORM -- database addition, deletion, modification and query operation logic
Word自动生成目录的方法
中国首款电音音频类“山野电音”数藏发售来了!
STM32 ADC和DMA
[second on] [jeecgboot] modify paging parameters
2022.7.3DAY595
Official media attention! The list of top 100 domestic digital collection platforms was released, and the industry accelerated the healthy development of compliance
fiddler-AutoResponder
Google colab loads Google drive (Google drive is used in Google colab)
官媒关注!国内数字藏品平台百强榜发布,行业加速合规健康发展
ORM -- grouping query, aggregation query, query set queryset object properties
C logging method
ES6中的原型对象