웹 페이지 형태에서 특정 기호의 입력을 금지하는 간단한 구현 방법입니다. 예를 들어 다음 코드는 "*", "^" 및 "|" 세 가지 기호의 입력을 금지합니다.
<!DOCTYPE html PUBLIC "- //W3C// DTD XHTML 1.0 전환//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ">
<html xmlns=" http://www.w3.org/1999/xhtml ">
<머리>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>제목 없음 1</title>
</head>
<본문>
<input onkeyup="this.value=this.value.replace(/[*^|]+/,'');" value="" size="20" />
</body>
</html>