form 이 여러개일때 입력값 체크
페이지 정보
본문
<Script Language="JavaScript">
<!--
function check_search(frm)
{
eval("var form = document." + frm + ";");
var key = form.aaa.value;
if( !trim(key) )
{
window.alert("단어를 입력해 주세요");
form.aaa.focus();
return false;
}
return true;
}
//-->
</Script>
--- 아래는 폼문....
<form name="form1" method="post" onSubmit="return check_search('form1');">
<input type="text" name="aaa">
</form>
<br>
<form name="form2" method="post" onSubmit="return check_search('form2');">
<input type="text" name="aaa">
</form>
<!--
function check_search(frm)
{
eval("var form = document." + frm + ";");
var key = form.aaa.value;
if( !trim(key) )
{
window.alert("단어를 입력해 주세요");
form.aaa.focus();
return false;
}
return true;
}
//-->
</Script>
--- 아래는 폼문....
<form name="form1" method="post" onSubmit="return check_search('form1');">
<input type="text" name="aaa">
</form>
<br>
<form name="form2" method="post" onSubmit="return check_search('form2');">
<input type="text" name="aaa">
</form>
- 이전글비밀번호, 패스워드 생성규칙 체크 21.02.10
- 다음글div 새창 띄우기..... 21.02.10
댓글목록
등록된 댓글이 없습니다.