Learning site for website creation

JavaScriptでスマホ判定

公開日:2019年11月08日
const ua = navigator.userAgent;
const isSp = (ua.indexOf('iPhone') > -1 || (ua.indexOf('Android') > -1 && ua.indexOf('Mobile') > -1));
const isPc = (!isSp);
if (isSp) {
    // スマホ処理
}
if (isPc) {
    // PC処理
}