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処理 }