我的手机是安卓系统,请问是哪个版本呢?
- 内容介绍
- 文章标签
- 相关推荐
本文共计159个文字,预计阅读时间需要1分钟。
Android版本类型繁多,兼容性也强,有时需要根据安卓系统版本做一些处理。例如,低于4.3系统的可能只显示一张占位图:`const userAgent=na`。
const userAgent = navigator.userAgent; const index = navigator.userAgent.indexOf("Android"); if(index >= 0){ const androidVersion = parseFloat(userAgent.slice(index + 8)); if(androidVersion <= 4.3){ //系统版本小于4.3 document.body.innerHtml = ""; console.log("您的系统版本太低,请升级到最新版本"); } }
本文共计159个文字,预计阅读时间需要1分钟。
Android版本类型繁多,兼容性也强,有时需要根据安卓系统版本做一些处理。例如,低于4.3系统的可能只显示一张占位图:`const userAgent=na`。
const userAgent = navigator.userAgent; const index = navigator.userAgent.indexOf("Android"); if(index >= 0){ const androidVersion = parseFloat(userAgent.slice(index + 8)); if(androidVersion <= 4.3){ //系统版本小于4.3 document.body.innerHtml = ""; console.log("您的系统版本太低,请升级到最新版本"); } }

