2013-02-22 3 views
3

나는 터치 장치를 감지 코드 줄이있다. 너무 구체적이지 않고 어떻게해야합니까? 당신이 당신의 모바일 사이트로 사용자를 리디렉션하고자하는 경우직접 휴대 기기 만하지 정제

+0

이렇게하면 도움이됩니다. http://stackoverflow.com/questions/3514784/best-way-to-detect-handheld-device-in-jquery – Pete

답변

4

이를 사용합니다 :

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) 

}