일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 가상서버호스팅
- 램가스초월
- php
- 알리익스프레스
- jQuery
- 자바스크립트
- 스톤에이지
- 티스토리
- iptime
- 킹북이초월
- 윈도우10
- Rocky
- 시놀로지
- proxmox
- 알뜰폰
- 보르비스초월
- ConoHa
- KB국민카드
- centos
- 소비전력
- Apache
- mysql
- 복현오거리
- OpenWrt
- 아파치
- KB증권
- SKT
- 라즈베리파이2
- PHP-FPM
- 리눅스
- Today
- Total
맛집 여행 캠핑 일상 생활
[jQuery] Detect Local IP 본문
[jQuery] Detect Local IP
javascript 로 로컬아이피를 알아내는 소스코드입니다.
<script src="https://cdn.whatismybrowser.com/prod-website/static/main/js/site.min.js?cb=26837257"></script>
<script>
$(document).ready(function() {
$(".detected_result .value").html("Please wait...");
WIMB.detect.local_ipv4_addresses.trigger_detection();
setTimeout(function() {
// Local IPv4 Address (if supported)
var local_ipv4_addresses = WIMB.detect.local_ipv4_addresses.retrieve();
if (local_ipv4_addresses.length > 0) {
$(".detected_result .value").html("<ul></ul>");
for (local_ipv4_address_key in local_ipv4_addresses) {
$(".detected_result .value ul").append("<li>"+local_ipv4_addresses[local_ipv4_address_key]+"</li>");
}
}
else {
$(".detected_result .value").html("Not possible to detect your local IP.");
}
}, 1000);
});
</script>
<div class="detected_result">
<div class="value">
<ul>IP here</ul>
</div>
</div>
2020.02.11 지금은 윈도우 업데이트 때문인지 몰라도 아이피가 이상한 헥사값으로 나오네요~
'jQuery' 카테고리의 다른 글
[jQuery] img Not Found 처리 및 function 파라메터 값 전달 방법 (0) | 2019.10.31 |
---|---|
[jQuery] AJAX 외부도메인 PHP 호출 예제 (0) | 2019.06.21 |
[jQuery] 상위 노드 parent 찾기 (0) | 2018.10.02 |
jQuery 특정 Element 제외하고 선택하기 (0) | 2017.04.05 |
jQuery image cache load 문제 (0) | 2017.02.10 |