簡體   English   中英

僅限移動設備而不是平板電腦

[英]Direct only mobile devices not tablets

我有這行代碼檢測所有觸摸設備:

<script>if( 'ontouchstart' in window ) window.location = 'mobile.html';</script>

我只想修改它,以便它僅針對支持觸控的移動設備,但也不包括平板電腦設備。 如何在不太具體的情況下做到這一點?

如果您想將用戶重定向到移動網站,可以使用以下命令:

if (screen.width <= 768) {
        window.location = "mobile.html";
    }

如果你想知道它的觸摸屏是否小於768px我認為你可以使用它:

var is_touch_device = 'ontouchstart' in document.documentElement;

var viewport = $(window).width()

if (is_touch_device == true && viewport < 768) {

   (Code goes here)

}

暫無
暫無

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

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