[javascript] ip 조회 스크립트
로빈아빠
본문
<head>
<script language="javascript">
function check_ip(ipval){
document.isp_form.action='http://whois.nic.or.kr/result.php';
document.isp_form.method='post';
document.isp_form.target='_blank';
document.isp_form.domain_name.value = ipval;
document.isp_form.submit();
document.isp_form.action='';
document.isp_form.method='';
document.isp_form.target='';
}
</script>
</head>
<body>
<form name="isp_form"><input type=hidden name="domain_name" value=""></form>
<a href='javascript:void(0)' OnClick="check_ip('아이피주소')">아이피주소</a>
</body>
[이 게시물은 VIRHAC님에 의해 2009-09-13 14:38:24 HTML에서 이동 됨]
<script language="javascript">
function check_ip(ipval){
document.isp_form.action='http://whois.nic.or.kr/result.php';
document.isp_form.method='post';
document.isp_form.target='_blank';
document.isp_form.domain_name.value = ipval;
document.isp_form.submit();
document.isp_form.action='';
document.isp_form.method='';
document.isp_form.target='';
}
</script>
</head>
<body>
<form name="isp_form"><input type=hidden name="domain_name" value=""></form>
<a href='javascript:void(0)' OnClick="check_ip('아이피주소')">아이피주소</a>
</body>
[이 게시물은 VIRHAC님에 의해 2009-09-13 14:38:24 HTML에서 이동 됨]
관련링크
댓글목록
등록된 댓글이 없습니다.