簡體   English   中英

如何使用JS在不同設備上加載html文件

[英]How to load html files on different devices using JS

我有兩個 HTML 文檔,一個用於設備寬度小於 768px ,另一個用於大於 768px 的設備。 如何使用設備檢測方法加載每個文檔?

將此添加到您的頁面:

<script>
    var width = window.innerWidth;
    if (width < 768) {
        window.open("./smaller.html", "_self");
    } else {
        window.open("./greather.html", "_self");
    }
</script>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM