WWWの鉄人
2000/01/21(金) 14:30:25
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "
http://www.w3.org/TR/REC-html40/strict.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title>サンプル</title>
<script type="text/javascript">
<!--
function add(obj)
{
document.forms[0].text.value += obj.memo.value + "\n";
}
//-->
</script>
</head>
<body>
<form action="xxx.cgi" method="post">
<p><textarea name="text" cols="40" rows="10"></textarea></p>
<p>
<input type="submit" value="決定">
<input type="reset" value="削除">
</p>
</form>
<form action="">
<p>
<input type="text" name="memo" value="" size="40">
<input type="button" value="決定" onclick="add(this.form);">
<input type="reset" value="削除">
</p>
</form>
</body>
</html>