브라우저 버전 확인

Jiwontwopunch·2022년 4월 8일
0

독학

목록 보기
45/102
post-thumbnail

메인 html, body 하단에 작성

<script>
(function () {
    const useragent = window.navigator.userAgent.toLowerCase();
    if (useragent.indexOf('chrome') < 0 && useragent.indexOf('safari') < 0) {
        document.body.style.cssText = 'height: auto';
        document.body.innerHTML =
        '<p style="padding: 20px; line-height: 1.6">
        webkit 기반 브라우저(크롬, 사파리 등)에서 작동</p>';
    }
})();
</script>

0개의 댓글