function isMobile(){ if( navigator.userAgent.match(/Android/i)|| navigator.userAgent.match(/webOS/i)|| navigator.userAgent.match(/iPhone/i)|| navigato ...
分类:
其他好文 时间:
2021-04-02 13:34:15
阅读次数:
0
1.利用了正则表达式和三目运算符,含义就是如果是移动端打开的话那就跳转到 "https:www.baidu.com/" ,如果不是就跳转到"http://new.baidu.com/" window.location.href = /Android|webOS|iPhone|iPod|BlackBe ...
分类:
移动开发 时间:
2020-07-10 11:37:54
阅读次数:
96
1、js 识别 1.1 pc端 和 移动端 代码分开( 各是一个单页应用,或各有一套代码) 直接在 pc端的首页 index.html 的 head 里加入识别代码 <script type="text/javascript"> if(/Android|webOS| iPhone | iPad | ...
分类:
移动开发 时间:
2020-06-29 15:31:27
阅读次数:
126
先来个预览效果: 原理:根据用户请求,在nginx中会判断用户请求终端是什么设备,默认不做处理,这里我们添加if语句判断,符合规则后端指向指定路径 打开nginx配置文件 } server { listen 80; server_name www.test.com; charset utf-8; a ...
分类:
移动开发 时间:
2020-04-07 12:25:17
阅读次数:
121
server模块下添加 if ($http_user_agent ~* '(Android|webOS|iPhone|iPod|BlackBerry)') { rewrite ^.+ http://mobile.test.com/mobile/$uri;} 其中mobile为手机端的路径标识, 可以 ...
分类:
移动开发 时间:
2020-03-02 12:47:37
阅读次数:
160
// 获取图片 function getImage() { let modal = document.getElementById("modal"); getMainBox().addEventListener("click",function(e) { let event = getEvent(e ...
分类:
移动开发 时间:
2019-12-26 16:19:08
阅读次数:
128
WebOS平台 简介:网络应用休闲平台。 25os网络应用平台界面和我们电脑的操作系统非常的像,按F11键可以全屏显示,平台桌面放置了一些常用的软件应用,更多软件应用可以在桌面在线工具中查看及使用。 UZER.ME 简介:云端在线移动办公。 UZER.ME网站需要登陆后才能使用,站点包含了文档库、A ...
分类:
其他好文 时间:
2019-11-10 15:46:41
阅读次数:
99
正则的方式 if(/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)){ // console.log("移动端") } else { // console.log("pc端") } ...
分类:
移动开发 时间:
2019-11-05 20:02:06
阅读次数:
111
一、Navigator对象 1、获取用户的浏览器信息。 let ua = navigator.userAgent.toLowerCase(); 打印一下ua的结果: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 ...
分类:
微信 时间:
2019-01-23 21:41:49
阅读次数:
239
当你的网页使用了两套代码(移动端和pc端代码)来显示你的网页时,就需要用到这种方法: 手机端: if (!/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) { window.location.href = "http ...
分类:
移动开发 时间:
2018-08-23 16:59:00
阅读次数:
197