<script language="javascript">
<!--
bads = new Array
("알몸","임마","바보","미친놈","성인정보","섹스","나쁜놈","불륜","자살","낙태","똥개")
function Check() {
 //아래에서 필터할 폼의 이름과 필드이름을 설정
 badCheck=document.myform1.field1.value.toLowerCase()
 awdrgy = 0
 aLeRt = 0
 while (awdrgy<=bads.length-1 && aLeRt!=1) {
  if (badCheck==bads[awdrgy]) {
   aLeRt = 1
   alert("입력하면 안되는 금지어를 입력하셨습니다.!")
   document.myform1.field1.value=""
  }
  awdrgy++
 }
}
-->
</script>
<!--금지어를 입력못하게 하는 스크립트 끝-->
<!--폼 환경 설정-->
<form name="myform1">
<input name="field1" onblur="Check();">
<input type="button"  value="Submit" >
</form>
<!--폼 환경 설정 끝-->

+ Recent posts