Начало
Пользовательские детали
Фильтр IP-адреса
(Netscape 4.0 +) JavaScript может предотвратить посетителей с определенными IP-адресами от посещения Вашего сайта.
JavaScript Фильтр IP-адреса
<!-- ONE STEP TO INSTALL IP ADDRESS FILTER: 1. Copy the coding into the HEAD of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin netscape = (navigator.appName.indexOf("Netscape") != -1); version4 = (navigator.appVersion.indexOf("4.") != -1); if (netscape && version4) { ip = "" + java.net.InetAddress.getLocalHost().getHostAddress(); if (ip.indexOf("207.136") >= -1) // This would block anyone from 207.136.xxx.xxx { alert("You are not permitted to access this site."); history.go(-1); } } // End --> </script> <!-- Script Size: 0.79 KB -->