10
JavaScript를 사용하여 브라우저 버전과 운영 체제를 감지하는 방법은 무엇입니까?
아래 코드를 사용해 보았지만 IE6에서 작동하지 않는 Chrome 및 Mozilla에서만 결과를 표시합니다. <div id="example"></div> <script type="text/javascript"> txt = "<p>Browser CodeName: " + navigator.appCodeName + "</p>"; txt+= "<p>Browser Name: " + navigator.appName + "</p>"; txt+= "<p>Browser Version: " + navigator.appVersion + "</p>"; txt+= "<p>Cookies Enabled: " + navigator.cookieEnabled + "</p>"; txt+= …