これは、iOSの古いバージョンでのposition:fixedの「修正」に関連しています。ただし、iOS5以降がインストールされている場合、修正によりページが破損します。
how iOS 5を検出するには:navigator.userAgent.match(/OS 5_\d like Mac OS X/i)
ですが、iOS6がやがて登場すると機能しなくなります。
これが私が持っているものです。
$(document).bind("scroll", function() {
if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) {
if (navigator.userAgent.match(/OS 5_\d like Mac OS X/i)) {
}
else {
changeFooterPosition();
}
});
このコードスニペットを使用して、iOS 2.0以降のバージョンを判別できます。
function iOSversion() {
if (/iP(hone|od|ad)/.test(navigator.platform)) {
// supports iOS 2.0 and later: <http://bit.ly/TJjs1V>
var v = (navigator.appVersion).match(/OS (\d+)_(\d+)_?(\d+)?/);
return [parseInt(v[1], 10), parseInt(v[2], 10), parseInt(v[3] || 0, 10)];
}
}
ver = iOSversion();
if (ver[0] >= 5) {
alert('This is running iOS 5 or later.');
}
Pumbaa80の回答はほぼ100%で、彼は一部を省略しました。一部のiOSリリースには3桁目があります。
例
Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_3 like Mac OS X; en_us) AppleWebKit/525.18.1 (KHTML, like Gecko)
以下はそれを可能にします
if(/(iPhone|iPod|iPad)/i.test(navigator.userAgent)) {
if(/OS [2-4]_\d(_\d)? like Mac OS X/i.test(navigator.userAgent)) {
// iOS 2-4 so Do Something
} else if(/CPU like Mac OS X/i.test(navigator.userAgent)) {
// iOS 1 so Do Something
} else {
// iOS 5 or Newer so Do Nothing
}
}
その余分なビット(_\d)?バージョン番号の3桁目の可能性を考慮します。チャーリー・S、あなたの質問にも答えるべきです。
他の点に注意してください。最初のチェックはiOS 1では機能しないためです。iPhoneおよびiPod用のiOS 1では、UserAgent文字列にバージョン番号が含まれていませんでした。
iPhone v 1.0
Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420+ (KHTML, like Gecko) Version/3.0 Mobile/1A543 Safari/419.3
iPod v1.1.3
Mozilla/5.0 (iPod; U; CPU like Mac OS X; en) AppleWebKit/420.1 (KHTML, like Gecko) Version/3.0 Mobile/4A93 Safari/419.3
これらはすべて、次のリンクで見つけることができます Apples website here 。
Pumbaa80の回答に追加します。バージョン文字列は4_0
、5_0_1
、4_0_4
など。したがって、[1-4]_/d
(単一の下線と数字)は適切ではありません。以下のJavaScriptは、iOS 3-5のさまざまなサブバージョンで機能します。
if (/(iPhone|iPod|iPad)/i.test(navigator.userAgent)) {
if (/OS [1-4](.*) like Mac OS X/i.test(navigator.userAgent)) {
// iOS version is <= 4.
} else {
// iOS version is > 4.
}
}
最初:match
で十分な場合は、test
を使用しないでください。
第二:あなたは他の方法でテストする必要があります。壊れていることがわかっているUAを見つけます。
if(/(iPhone|iPod|iPad)/i.test(navigator.userAgent)) {
if (/OS [1-4]_\d like Mac OS X/i.test(navigator.userAgent)) {
changeFooterPosition();
...
IOSとAndroid OSバージョン。
IOS 4.3〜6.0.1の実際のユーザーエージェント文字列、およびAndroid 2.3.4〜4.2でテスト済み
var userOS; // will either be iOS, Android or unknown
var userOSver; // this is a string, use Number(userOSver) to convert
function getOS( )
{
var ua = navigator.userAgent;
var uaindex;
// determine OS
if ( ua.match(/iPad/i) || ua.match(/iPhone/i) )
{
userOS = 'iOS';
uaindex = ua.indexOf( 'OS ' );
}
else if ( ua.match(/Android/i) )
{
userOS = 'Android';
uaindex = ua.indexOf( 'Android ' );
}
else
{
userOS = 'unknown';
}
// determine version
if ( userOS === 'iOS' && uaindex > -1 )
{
userOSver = ua.substr( uaindex + 3, 3 ).replace( '_', '.' );
}
else if ( userOS === 'Android' && uaindex > -1 )
{
userOSver = ua.substr( uaindex + 8, 3 );
}
else
{
userOSver = 'unknown';
}
}
次に、特定のバージョン以上を検出するには、次を試してください:
if ( userOS === 'iOS' && Number( userOSver.charAt(0) ) >= 5 ) { ... }
デバイス/ブラウザでこのコードを実行するだけです
if(window.navigator.userAgent.match( /iP(hone|od|ad)/)){
var iphone_version= parseFloat(String(window.navigator.userAgent.match(/[0-9]_[0-9]/)).split('_')[0]+'.'+String(window.navigator.userAgent.match(/[0-9]_[0-9]/)).split('_')[1]);
// iPhone CPU iPhone OS 8_4 like Mac OS X
alert(iphone_version); // its alert 8.4
if(iphone_version >= 8){
alert('iPhone device, iOS 8 version or greater!');
}
}
このiphone_version変数は、iPhoneデバイスの正しいOSバージョンを提供します。
探しているものが本当に見つからなかったので、このページやネット上の他のページからアイデアを取り出して、これを思いつきました。うまくいけば、他の人もそれが役に立つと思うでしょう。
function iOS_version() {
if(navigator.userAgent.match(/ipad|iphone|iPod/i)){ //if the current device is an iDevice
var ios_info ={};
ios_info.User_Agent=navigator.userAgent;
ios_info.As_Reported=(navigator.userAgent).match(/OS (\d)?\d_\d(_\d)?/i)[0];
ios_info.Major_Release=(navigator.userAgent).match(/OS (\d)?\d_\d(_\d)?/i)[0].split('_')[0];
ios_info.Full_Release=(navigator.userAgent).match(/OS (\d)?\d_\d(_\d)?/i)[0].replace(/_/g,".");
ios_info.Major_Release_Numeric=+(navigator.userAgent).match(/OS (\d)?\d_\d(_\d)?/i)[0].split('_')[0].replace("OS ","");
ios_info.Full_Release_Numeric=+(navigator.userAgent).match(/OS (\d)?\d_\d(_\d)?/i)[0].replace("_",".").replace("_","").replace("OS ",""); //converts versions like 4.3.3 to numeric value 4.33 for ease of numeric comparisons
return(ios_info);
}
}
これにより、メジャーリリースと完全なリリース番号を文字列またはiOSの番号として取得できます。
ユーザーエージェント文字列の例:
Mozilla/5.0(iPhone; Mac OS XのようなCPU iPhone OS 6_1_3)AppleWebKit/536.26(KHTML、Geckoのような)Mobile/10B329
使用法:
var iOS=iOS_version();
console.log(iOS.Full_Release); //returns values in form of "OS 6.1.3"
console.log(iOS.Full_Release_Numeric); //returns values in form of 6.13
//useful for comparisons like if(iOS.Full_Release_Numeric >6.2)
console.log(iOS.Major_Release); //returns values in form of "OS 6"
console.log(iOS.Major_Release_Numeric); //returns values in form of 6
//useful for comparisons like if(iOS.Major_Release_Numeric >7)
console.log(iOS.As_Reported); //returns values in form of "OS 6_1_3"
console.log(iOS.User_Agent); //returns the full user agent string
このページの元の質問の場合、次の方法でこのコードを使用できます。
var iOS=iOS_version();
$(document).bind("scroll", function() {
if(iOS){if(iOS.Major_Release_Numeric <5) {}
else {changeFooterPosition();}
}
});
さらにバージョン番号(「5」)を解析し、数値がバージョン番号より大きい/小さい場合の条件を追加します。
function getIOSVersion() {
const ua = navigator.userAgent;
if (/(iPhone|iPod|iPad)/i.test(ua)) {
return ua.match(/OS [\d_]+/i)[0].substr(3).split('_').map(n => parseInt(n));
}
return [0];
}
これは、v10.0.1の[10,0,1]
のような個々のバージョン番号を持つ配列を返します。そうでない場合は、デフォルトで[0]
になります。最初の桁(メジャーバージョン)またはすべてをチェックして、必要なバージョンをテストできます。