* 이 포스팅은 쿠팡 파트너스 활동의 일환으로 이에 따른 일정액의 수수료를 제공받습니다.
myip check
현재 접속한 단말기의 접속정보를 표시합니다.
Your IP address is
- 구현 코드
fetch('https://api.ipify.org?format=json')
.then(response => response.json())
.then(data => {
$("#textoutput").text(data.ip);
})
.catch(error => {
$("#textoutput").text('Error fetching IP address:'+ error);
});
728x90
댓글