function isHangul(sVal)
{
  var sBit = '';

  for(i=0;i<sVal.length;i++)
  {
    sBit = sVal.charAt(i);
    if(escape( sBit ).length <= 4)
    {
   alert("한글만 입력하십시오.");
      return false;
    }
  }
  return true;
}

 

Posted by 말없제이
,