제목 : 18일차 강의내용 - CGI 입력양식 이벤트 처리
글번호:
|
|
31
|
작성자:
|
|
관리자
|
작성일:
|
|
2001/02/01 오전 12:44:00
|
조회수:
|
|
5263
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<title>JavaScript</title>
<meta name="generator" content="Namo WebEditor v3.0">
<script language="javascript">
<!--
function sendit()
{
//이름
if (document.myform.name.value == "") {
alert("이름을 입력해 주십시오.. please.");
return false;
}
//제목
if (document.myform.title.value == "") {
alert("제목을 입력해 주십시오.., please.");
return false;
}
//글 내용
if (document.myform.content.value == "" ) {
alert("글을 작성 안하셨습니다. 글을 작성해 주십시요");
return false;
}
//비밀번호
if (document.myform.pwd.value == "" ) {
alert("수정,삭제시 필요합니다. 비밀번호를 기입해 주십시요");
return false;
}
document.myform.submit();
}
//-->
</script>
<style type="text/css">
<!--
A:link {font: 10pt GulimChe,돋움; color: #0000ff; text-decoration: none}
A:active {font: 10pt GulimChe,돋움; color: #ff1493; text-decoration: none}
A:visited {font: 10pt GulimChe,돋움; text-decoration: none}
A:hover {text-decoration: color: #ff1493;}
td {font: 10pt GulimChe,돋움; color: black;}
-->
</style>
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<div align="center"><table border cellpadding="5" cellspacing="0" width="600"
bordercolordark="white" bordercolorlight="#A56C04">
<tr>
<td height="17" align="center" bgcolor="#E7F0BB"><p align="center">학습내용
: 자바스크립트 - CGI 입력양식 처리 (2001/01/31)</td>
</tr>
<tr>
<td width="964">
<table border cellpadding="5" cellspacing="0" bordercolordark="white"
bordercolorlight="red">
<tr>
<td width="119"><form name="myform" method="post" action="write_ok.asp">
<p>이 름 :</td>
<td width="521"><p> <input type="text" name="name"></td>
</tr>
<tr>
<td width="119"><p>이메일 :</td>
<td width="521"><p> <input type="text" name="email"
size="30"></td>
</tr>
<tr>
<td width="119"><p>홈페이지 : </td>
<td width="521"><p> <input type="text" name="homepage"
value="http://" size="30"></td>
</tr>
<tr>
<td width="119"><p>제 목 : </td>
<td width="521"><p> <input type="text" name="title"
size="30"></td>
</tr>
<tr>
<td width="119"><p>글 쓰 기 : </td>
<td width="521"><p> <textarea name="content" rows="10"
cols="55"></textarea></td>
</tr>
<tr>
<td width="119"><p>비밀번호 : </td>
<td width="521"><p> <input type="password" name="pwd"
size="8"></td>
</tr>
<tr>
<td width="646" colspan="2"><p align="center"> <input
type="button" name="write" value="글쓰기 완료" onclick="sendit()">
<input type="reset" name="reset" value="글쓰기 내용 취소"></td>
</tr>
</table></td>
</tr>
</table></div>
</form>
<p> </p>
</body>
</html>