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'
}