728x90 navigator1 [JavaScript] 자바스크립트로 네트워크 연결 확인하기 1. 문법 navigation.onLine - 브라우저의 온라인 여부 반환 (네트워크 연결상태 여부) - 읽기 전용(read-only) 속성 2. 브라우저 지원 3. 예제 코드 if(navigator.onLine == true) { var txt = ""; txt += "Browser CodeName: " + navigator.appCodeName + "\n"; txt += "Browser Name: " + navigator.appName + "\n"; txt += "Browser Version: " + navigator.appVersion + "\n"; txt += "Cookies Enabled: " + navigator.cookieEnabled + "\n"; txt += "Browser Languag.. 2019. 4. 4. 이전 1 다음 728x90