jsはアクセスデバイスからページをジャンプします.
387 ワード
navigator
属性の中のuserAgent
は、ユーザがデバイスにアクセスする情報を含み、この属性によってユーザのアクセスデバイスを取得し、ジャンプページを判断することができる.if (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent)) {
window.location.href = 'src'
} else if (/(Android)/i.test(navigator.userAgent)) {
window.location.href = 'src'
} else {
window.location.href = 'src'
}