Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何根据设备操作系统版本在 phonegap android 应用程序中设置某些条件。就像我尝试过的一样:-
deviceVersion = device.version; if (deviceVersion > 2.3){.... } else { ...... }
但这不适用于真实设备,因为设备版本类似于 4.0.2 等。
有什么解决方案吗?
尝试这个..
var ua = navigator.userAgent; if( ua.indexOf("Android") >= 0 ) { var androidversion = parseFloat(ua.slice(ua.indexOf("Android")+8)); if (androidversion < 2.3) { // do whatever } }
在浏览器中检测 iOS 和 Android 的操作系统版本