묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
어디가 잘못되었는지..
2003.06.21 17:05
자격증 관련 준비중이라 -_-;
<html>
<head>
<title>일일 판매 입력</title>
<script language="javascript">
function check()
{
if ( document.input.code.value=""){
alert("사원코드가 입력되지 않았습니다^^");
document.input.code.focus();
return;
}
else if( parseInT (document.input.total.value) < 0 ){
alert("판매금액에 음수가 입력되었습니다.");
document.input.total.value="";
return;
}
else document.input.submit();
}
</script>
</head>
<body>
<center>
<form name=input>
<table border=1 width=300>
<tr>
<td align=center> 사원코드</td><td> <input type=text name=code size=10></td>
</tr>
<tr>
<td align=center> 제품명 </td><td> <input type=text name=name size=10></td></tr>
<tr>
<td align=center> 판매금액 </td><td> <input type=text name=total size=10></td>
</tr>
</table><br>
<input type=button value="입력하기" onclick="check()">
<input type=reset value="지우기" >
</form>
</body>
</html>
<html>
<head>
<title>일일 판매 입력</title>
<script language="javascript">
function check()
{
if ( document.input.code.value=""){
alert("사원코드가 입력되지 않았습니다^^");
document.input.code.focus();
return;
}
else if( parseInT (document.input.total.value) < 0 ){
alert("판매금액에 음수가 입력되었습니다.");
document.input.total.value="";
return;
}
else document.input.submit();
}
</script>
</head>
<body>
<center>
<form name=input>
<table border=1 width=300>
<tr>
<td align=center> 사원코드</td><td> <input type=text name=code size=10></td>
</tr>
<tr>
<td align=center> 제품명 </td><td> <input type=text name=name size=10></td></tr>
<tr>
<td align=center> 판매금액 </td><td> <input type=text name=total size=10></td>
</tr>
</table><br>
<input type=button value="입력하기" onclick="check()">
<input type=reset value="지우기" >
</form>
</body>
</html>
댓글 2
-
행복한고니
2003.06.21 20:59
javascript에는 else if 가 없습니다. ^^ -
TheMics
2003.06.21 22:34
에에;elseif가 아니라 else if로 쓰일 뿐 존재하는 걸로 알고 있습니다만;ㅁ;;;;