좋 은 js 세 션 모음 집

965 단어
1. 브 라 우 저 정 보 를 판단 하고 핸드폰 이 라면 핸드폰 페이지 로 이동
if(/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)) {
    window.location.href = "xxx";
} else {
    window.location.href = "xxx";
}

2. 휴대폰 의 디 버 깅 신기
   ,    :

eruda.init();

   ,    :

__DEBUG__ && loadJS('http://cdn.jsdelivr.net/eruda/1.0.5/eruda.min.js', ()=>{
  eruda.init();
});

    ,      :
//             ,
//                   ,        ,     、        debug   ;
;(function () {
    var src = 'http://cdn.jsdelivr.net/eruda/1.0.5/eruda.min.js';
    if (!/eruda=true/.test(window.location) && localStorage.getItem('active-eruda') != 'true') return;
    document.write('');
    document.write('eruda.init();');
})();

블 로그

좋은 웹페이지 즐겨찾기