본문 바로가기
Utils

🥰 myip check

by Knowledge Store In Hyunsoft 2024. 9. 24.

 

 

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

댓글