| ユーザエージェント |
window.navigator.userAgent |
|
| iPhone |
navigator.userAgent.indexOf('iPhone') != -1 |
|
| Android |
navigator.userAgent.indexOf('Android') != -1 |
|
| Appleのモバイル製品 |
/(iphone|ipad|ipod)/.test( navigator.userAgent.toLowerCase() ) |
|
| SafariまたはWebView |
/version/.test( navigator.userAgent.toLowerCase() ) |
|
| iOS Chrome |
/crios/.test( navigator.userAgent.toLowerCase() ) |
|
| Appleのモバイル製品のSafari |
/(iphone|ipad|ipod).*version/.test( navigator.userAgent.toLowerCase() ) |
|
| Appleのモバイル製品のChrome |
/(iphone|ipad|ipod).*crios/.test( navigator.userAgent.toLowerCase() ) |
|