위토즈 - 개발자프로그램판매공간

정보공유

[기타] javascript 플랫폼 디바이스 확인 함수

javascript 플랫폼 디바이스 확인 함수


// pc, mobile 구분

function checkPlatform(ua) {

if(ua === undefined) {

ua = window.navigator.userAgent;

}

ua = ua.toLowerCase();

var platform = {};

var matched = {};

var userPlatform = "pc";

var platform_match = /(ipad)/.exec(ua) || /(ipod)/.exec(ua) 

|| /(windows phone)/.exec(ua) || /(iphone)/.exec(ua) 

|| /(kindle)/.exec(ua) || /(silk)/.exec(ua) || /(android)/.exec(ua) 

|| /(win)/.exec(ua) || /(mac)/.exec(ua) || /(linux)/.exec(ua)

|| /(cros)/.exec(ua) || /(playbook)/.exec(ua)

|| /(bb)/.exec(ua) || /(blackberry)/.exec(ua)

|| [];

matched.platform = platform_match[0] || "";

if(matched.platform) {

platform[matched.platform] = true;

}

if(platform.android || platform.bb || platform.blackberry

|| platform.ipad || platform.iphone 

|| platform.ipod || platform.kindle 

|| platform.playbook || platform.silk

|| platform["windows phone"]) {

userPlatform = "mobile";

}

if(platform.cros || platform.mac || platform.linux || platform.win) {

userPlatform = "pc";

}

return userPlatform;

}



checkPlatform(window.navigator.userAgent);


정보공유
Total 60건 1 페이지
번호 제목 글쓴이 날짜 조회
열람중 javascript 플랫폼 디바이스 확인 함수 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 07-13 1766
59 웹사이트 접속 사용자 인증 걸기 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 03-09 2286
58 자바스크립트 소수점 포함 numberformat 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10-18 3293
57 .htaccess파일의 rewriterule 설정 http > https 처리 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 02-16 5768
56 전세계 국문 영문 국가명 국제전화번호 및 코드 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10-22 6628
55 F12 키코드 막기 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 04-14 8783
54 결제프로세스 연동과정 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 03-03 13822
53 모바일 웹 애플리케이션 디버깅 초간단 설명 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 01-12 14353
52 텍스트 복사 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 12-03 11468
51 Chrome 브라우저 80 버전 로그인이 안되는 현상 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 10-02 12538
50 .htaccess 파일 https 로 자동변환 처리. 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 09-04 13119
49 javascript 동시 실행 테스트 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 07-01 13960
48 javascript 만나이 계산 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 06-17 16210
47 자바스크립트 날짜 계산식 YYYY-MM-DD 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 03-23 14893
46 https 를 위해 .htaccess 설정했는데 "리디렉션한 횟수가 너무 많습니다." 라는 오류 메세지가 뜰경우 위토즈쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 03-12 16738