이 글에서는 웹 페이지에 접속하는 기기의 기본 정보를 얻는 방법을 소개하고 모든 사람의 편의를 위해 완전한 코드와 예제를 제공합니다.
1. 방문자 IP 및 위치 가져오기
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title>javascript获取访问者IP及所在地</title> <script src="http://pv.sohu.com/cityjson?ie=utf-8"></script> </head> <body> <script type="text/javascript"> document.write("IP: " + returnCitySN['cip'] + "<br>地区代码: " + returnCitySN['cid'] + "<br>所在地: " + returnCitySN['cname']); </script> </body></html>
출력:
IP: 61.140.62.124地区代码: 440100所在地: 广东省广州市
2. 방문자 장치 정보 가져오기
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title>javascript获取访问者设备信息</title> </head> <body> <script type="text/javascript"> document.write("userAgent: " + navigator.userAgent + "<br><br>"); document.write("appName: " + navigator.appName + "<br><br>"); document.write("appCodeName: " + navigator.appCodeName + "<br><br>"); document.write("appVersion: " + navigator.appVersion + "<br><br>"); document.write("appMinorVersion: " + navigator.appMinorVersion + "<br><br>"); document.write("platform: " + navigator.platform + "<br><br>"); document.write("cookieEnabled: " + navigator.cookieEnabled + "<br><br>"); document.write("onLine: " + navigator.onLine + "<br><br>"); document.write("userLanguage: " + navigator.language + "<br><br>"); document.write("mimeTypes.description: " + navigator.mimeTypes[1].description + "<br><br>"); document.write("mimeTypes.type: " + navigator.mimeTypes[1].type + "<br><br>"); document.write("plugins.description: " + navigator.plugins[3].description + "<br><br>"); </script> </body> </html>
출력:
userAgent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:56.0) Gecko/20100101 Firefox/56.0appName: NetscapeappCodeName: MozillaappVersion: 5.0 (Macintosh)appMinorVersion: undefinedplatform: MacIntelcookieEnabled: trueonLine: trueuserLanguage: zh-CNmimeTypes.description: Shockwave FlashmimeTypes.type: application/x-shockwave-flash
이 문서에서는 JS 정보 방법으로 액세스 장치를 가져오는 방법을 설명합니다. , 더 많은 관련 지식을 얻으려면 PHP 중국어 웹사이트를 주의 깊게 살펴보시기 바랍니다.
관련 권장사항:
mysql5.7 내보내기 데이터 프롬프트--secure-file-priv 옵션 문제 해결
php를 통해 debug_backtrace 메소드 추적 코드 호출을 구현하는 방법
PHP 설명: A 숫자가 아닌 값에 대한 원인과 해결책에 문제가 발생했습니다
위 내용은 JS를 통해 장치 정보에 액세스하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!