더 "Try it Yourself" 아래의 예.
정의 및 사용
플랫폼 속성 반환이되는 플랫폼의 브라우저가 컴파일됩니다.
브라우저 지원
재산 | |||||
---|---|---|---|---|---|
platform | 예 | 예 | 예 | 예 | 예 |
통사론
navigator.platform
기술적 세부 사항
반환 값 : | 브라우저의 플랫폼을 나타내는 문자열. 가능한 값 :
|
---|
더 예
예
하나의 예에있는 모든 네비게이터 속성의 데모 :
var txt = "";
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 += "<p>Browser
Language: " + navigator.language + "</p>";
txt +=
"<p>Browser Online: " + navigator.onLine + "</p>";
txt += "<p>Platform: " +
navigator.platform + "</p>";
txt += "<p>User-agent header: " +
navigator.userAgent + "</p>";
»그것을 자신을 시도 <네비게이터 객체