ユーザーがモバイルを使用しているかどうかを検出するスクリプトがあります。
<script type="text/javascript">
//<![CDATA[
var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
if (mobile) || (navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) {
window.location.href = 'http://www.site.com/mobile/';
}
//]]>
</script>
しかし、私はこれを理解しています || の何が問題なのですか?
Uncaught SyntaxError: Unexpected token ||