我的网站 - https://wilfredopersonal.herokuapp.com/# - 显示了移动视图的一些特定内容。问题是,在加载桌面内容时,此内容也会显示在桌面中。我怎么能阻止它这样做?
<script> function isMobile() { if (navigator.userAgent.match(/Mobi/)) { return true; } if ("screen" in window && window.screen.width < 1366) { return true; } var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection; if (connection && connection.type === "cellular") { return true; } return false; }</script><script> if (!isMobile()) { document.getElementById("not-desktop").style.display = "none"; document.getElementById("container").style.display = "unset"; } else { document.getElementById("not-desktop").style.display = "unset"; document.getElementById("container").style.display = "none"; }</script>
收到一只叮咚
慕沐林林
相关分类