


js determines whether the current page is opened on a mobile device or on a PC_javascript skills
The example in this article explains the detailed code of js to determine whether the current page is opened on a mobile device or on a PC. I share it with you for your reference. The specific content is as follows
var browser = { versions: function () { var u = navigator.userAgent, app = navigator.appVersion; return { //移动终端浏览器版本信息 trident: u.indexOf('Trident') > -1, //IE内核 presto: u.indexOf('Presto') > -1, //opera内核 webKit: u.indexOf('AppleWebKit') > -1, //苹果、谷歌内核 gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1, //火狐内核 mobile: !!u.match(/AppleWebKit.*Mobile.*/), //是否为移动终端 ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端 android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android终端或uc浏览器 iPhone: u.indexOf('iPhone') > -1, //是否为iPhone或者QQHD浏览器 iPad: u.indexOf('iPad') > -1, //是否iPad webApp: u.indexOf('Safari') == -1 //是否web应该程序,没有头部与底部 }; }(), language: (navigator.browserLanguage || navigator.language).toLowerCase() } if (browser.versions.mobile) {//判断是否是移动设备打开。browser代码在下面 var ua = navigator.userAgent.toLowerCase();//获取判断用的对象 if (ua.match(/MicroMessenger/i) == "micromessenger") { //在微信中打开 setInterval(WeixinJSBridge.call('closeWindow'),2000); } if (ua.match(/WeiBo/i) == "weibo") { //在新浪微博客户端打开 } if (ua.match(/QQ/i) == "qq") { //在QQ空间打开 } if (browser.versions.ios) { //是否在IOS浏览器打开 } if(browser.versions.android){ //是否在安卓浏览器打开 } } else { //否则就是PC浏览器打开 window.close(); }
Code 2: js determines whether the user’s browsing device is a mobile device or a PC
In a recent website page, it is necessary to display different page styles according to the user's access device. The main purpose is to determine whether the user is accessed by a mobile device or a computer browser.
The js judgment processing code is given below for reference.
<script type="text/javascript"> 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"; document.writeln("您的浏览设备为:"); if (bIsIpad || bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) { document.writeln("phone"); } else { document.writeln("pc"); } } browserRedirect(); </script>
I have tested using browsers on computers, Android devices, iPhones, and iPads. This code is feasible and the judgments on all devices are correct.
The above is the entire content of this article, I hope it will be helpful to everyone’s study.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

If you encounter the error "The access point is temporarily full" when connecting to a Wi-Fi router or mobile hotspot on your Windows 11/10 PC, this is usually caused by network overload or too many connected devices. In order to solve this problem and successfully connect to the Internet, you can try the following methods: 1. Wait for a while for other devices to disconnect before trying to connect again. 2. Restart your Wi-Fi router or mobile hotspot to clear the network cache and reassign the IP address. 3. Make sure your PC’s Wi-Fi adapter driver is up to date, check for updates through Device Manager. 4. Try to connect at different times. Avoiding peak hours may have better connection opportunities. 5. Consider adding AccessP
![Windows PC keeps booting into BIOS [Fix]](https://img.php.cn/upload/article/000/887/227/171012121854600.jpg?x-oss-process=image/resize,m_fill,h_207,w_330)
If your Windows PC frequently enters the BIOS interface, this may cause difficulty in use. I'm stuck with the BIOS screen every time I turn on my computer, and restarting doesn't help. If you are facing this problem, then the solutions provided in this article will help you. Why does my computer keep booting in BIOS? Your computer's frequent restarts in BIOS mode may be caused by a variety of reasons, such as improper boot sequence settings, damaged SATA cables, loose connections, BIOS configuration errors, or hard drive failures, etc. Fix Windows PC Keeps Booting into BIOS If your Windows PC keeps booting into BIOS, use the fix below. Check your boot order and re-plug the

SamsungFlow is a convenient and practical tool that allows you to easily connect your Galaxy phone to your Windows PC. With SamsungFlow, you can conveniently share content between devices, sync notifications, mirror smartphones, and more. This article will introduce how to use SamsungFlow on a Windows computer. How to use Smartphone Streaming on Windows PC To use SamsungFlow to connect your Windows PC and Galaxy Phone, you need to ensure that your Galaxy smartphones and tablets are running Android 7.0 or higher, and your Windows PC is running Windows 10 or higher.

Essential tools for stock analysis: Learn the steps to draw candle charts in PHP and JS. Specific code examples are required. With the rapid development of the Internet and technology, stock trading has become one of the important ways for many investors. Stock analysis is an important part of investor decision-making, and candle charts are widely used in technical analysis. Learning how to draw candle charts using PHP and JS will provide investors with more intuitive information to help them make better decisions. A candlestick chart is a technical chart that displays stock prices in the form of candlesticks. It shows the stock price

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

This article will teach you how to download all OneDrive files to your PC at once. OneDrive is a powerful cloud storage platform that allows users to access their files anytime, anywhere. Sometimes, users may need to back up files locally or access them offline. Read on to learn how to do this easily. How to download all OneDrive files to PC at once? Follow these steps to download all OneDrive files to your Windows PC at once: Launch Onedrive and navigate to My Files. All files uploaded on OneDrive will be available here. Press CTRL+A to select all files, or check the checkbox to toggle selection of all items. Click on the download option at the top,

How to use PHP and JS to create a stock candle chart. A stock candle chart is a common technical analysis graphic in the stock market. It helps investors understand stocks more intuitively by drawing data such as the opening price, closing price, highest price and lowest price of the stock. price fluctuations. This article will teach you how to create stock candle charts using PHP and JS, with specific code examples. 1. Preparation Before starting, we need to prepare the following environment: 1. A server running PHP 2. A browser that supports HTML5 and Canvas 3

With the rapid development of Internet finance, stock investment has become the choice of more and more people. In stock trading, candle charts are a commonly used technical analysis method. It can show the changing trend of stock prices and help investors make more accurate decisions. This article will introduce the development skills of PHP and JS, lead readers to understand how to draw stock candle charts, and provide specific code examples. 1. Understanding Stock Candle Charts Before introducing how to draw stock candle charts, we first need to understand what a candle chart is. Candlestick charts were developed by the Japanese
