Cách lấy địa chỉ IP mạng bằng Javascript
Cách 1: cách lấy IP từ dịch vụ api.ipify.org
<script>
document.addEventListener("DOMContentLoaded", function() {
// Fetch the IP address from the API
fetch("https://api.ipify.org?format=json")
.then(response => response.json())
.then(data => {
// Display the IP address on the screen
alert( data.ip );
})
.catch(error => {
console.error("Error fetching IP address:", error);
});
});
</script>
Lấy địa chỉ IP mạng với Javascript