내 공인 아이피 주소

예제
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"
%><!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>내 공인 아이피 주소 조회 예제</title>
<script type="text/javascript">
    // 의존성 없는 예제를 위해 순수 JavaScript 기반 처리
    var ip = "";
    function getIP(json) {
        ip = json.ip;
    }
    window.onload = function() {
        document.getElementById("test").value = ip;
    }
</script>
<script type="application/javascript" src="https://api.ipify.org?format=jsonp&callback=getIP"></script>
</head>
<body>
    <div style="text-align: center;">
        <h3 style="font-size: 2.5em; color: green;font-weight: bold;">내 공인 아이피 주소</h3>
        <input type="text" id="test" style="text-align: center; font-size: 2.5em; border: 0px;width: 280px;" onclick="this.select();" readonly="readonly">
    </div>
</body>
</html>

※ 아이피 조회 API 출처 링크

https://www.ipify.org/


블로그 이미지

촌놈 개발자 일기

개발자로서 살아가는 느낌과 정보를 공유 합니다

,