本文主要介紹了js判斷是否是手機頁面的方法。具有很好的參考價值,以下跟著小編一起來看下吧
話不多說,請看程式碼:
<script> if (/mobile/i.test(navigator.userAgent) || /android/i.test(navigator.userAgent)) document.body.classList.add('mobile'); window.addEventListener('load', function(event) { setTimeout(function () { hab('#sup-post-2'); hab('#gd1-inner'); }, 1000); }); </script>
以上是js判斷是否為手機頁面的方法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!