Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to tell whether the download is ios or Android by js clicks

2025-03-29 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the relevant knowledge of "how to determine whether a download is ios or Android through js clicks". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

The code is as follows:

Var u = navigator.userAgent

Var isAndroid = u.indexOf ('Android') >-1 | | u.indexOf (' Adr') >-1; / / android terminal

Var isiOS =! u.match (/\ (I [^;] +; (U;)? CPU.+Mac OS X /); / / ios terminal

Alert ('is it Android:'+isAndroid)

Alert ('is it iOS:'+isiOS)

With this judgment, you can operate according to the corresponding platform.

1. For Android, just download app directly, or jump to the Android app market to download.

2.iOS, skip directly to the app page of the Apple Store to download.

3. For other platforms, skip to a custom page, such as a download page with multiple platforms.

Function downApp () {

Var u = navigator.userAgent

IsAndroid = u.indexOf ('Android') >-1 | | u.indexOf (' Adr') >-1

IsiOS =! u.match (/\ (I [^;] +; (U;)? CPU.+Mac OS X /)

Urls = {

'android':' http://ftp-apk.pcauto.com.cn/pub/autoclub-5000-autowapDL1.apk',

'ios':' https://itunes.apple.com/cn/app/zhong-guo-che-you-hui/id640447959',

'other':' http://www1.pcauto.com.cn/app/20141120/pcautoapp/index.html'

}

/ / Ternary operation

/ / _ window.location.href = isAndroid? Urls.android: isiOS? Urls.ios: urls.other

/ / simplify

If (isAndroid) {

_ window.location.href=urls.android

} else if (isiOS) {

_ window.location.href=urls.ios

} else {

_ window.location.href=urls.other

}

}

DownApp ()

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report