这个随笔纯粹是小知识的积累,以后都会打上小知识的标签。
经常见的,下载移动app时,只有一个二维码,但扫码后,会根据手机是iphone还是android下载不同app,下面就是这个操作的代码:
< !DOCTYPE html > <html > <head > </head> <body> <script> var ua = navigator.userAgent.toLowerCase(); if (/iphone | ipad | ipod / .test(ua)) { alert("iphone"); } else if (/android/.test(ua)) { alert("android"); } else { alert(‘unknow‘); } < /script> </body > </html>
这里主要是通过navigator.userAgent 获取标识,然后会输出下面类似的一个字符串,然后根据关键字判断标识。很简单吧。
"mozilla/5.0 (iphone; cpu iphone os 8_0 like mac os x) applewebkit/600.1.3 (khtml, like gecko) version/8.0 mobile/12a4345d safari/600.1.4"
转载请注明出处:http://zhutty.cnblogs.com
时间: 2024-09-29 20:44:59