index.html 2.12 KB
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html lang="ja" xmlns="http://www.w3.org/1999/xhtml">

	<head>
		<meta http-equiv="content-type" content="text/html;charset=utf-8" />
		<title>4章.インタラクティブなフォーム</title>
		<style type="text/css"><!--
body {
	font-family: "MS Pゴシック";
	font-family: Helvetica, Arial, sans-serif;
	color: #4C4C4C;
}
h2 {
	font-size: 18px;
	margin-top: 5px;
	margin-bottom: 5px;
}
h3 {
	font-size: 16px;
	margin-top: 5px;
	margin-bottom: 5px;
}
h4 {
	font-size: 14px; margin-left: 20px;
	margin-top: 5px;
	margin-bottom: 5px;
}
ul {
	font-size: 12px;
	margin-top: 5px;
	margin-bottom: 5px;
}
a:hover {
	color:#FF0000;
	text-decoration: underline;
	font-size: 12px;
}
a {
	text-decoration: none;
	font-size: 12px;
}
--></style>
	</head>

	<body>
		<h2>Chapter4 インタラクティブなフォーム Sample Script</h2>
		<hr />
		<h3>4.1 テキストボックスの入力支援</h3>
		<h4>4.1.1 テキストボックスへの自動挿入</h4>
		<ul>
			<li><a href="textbox1.html" target="_blank">textbox1.html</a></li>
		</ul>
		<h4>4.1.2 Google Suggest風のテキストボックス</h4>
		<ul>
			<li><a href="textbox2.html" target="_blank">textbox2.html</a></li>
		</ul>
		<hr />
		<h3>4.2 セレクトメニューの項目操作</h3>
		<h4>4.2.1 ラジオボタンでセレクトメニューの内容を切り替える</h4>
		<ul>
			<li><a href="select1.html" target="_blank">select1.html</a></li>
		</ul>
		<h4>4.2.2 セレクトメニューの簡易ショッピングカート</h4>
		<ul>
			<li><a href="select2.html" target="_blank">select2.html</a></li>
		</ul>
		<hr />
		<h3>4.3 サーバにデータを送信する</h3>
		<h4>4.3.1 POSTメソッドによるデータ送信の基本</h4>
		<ul>
			<li><a href="post1.html" target="_blank">post1.html</a></li>
		</ul>
		<h4>4.3.2 Ajax的なフォーム入力値のチェック</h4>
		<ul>
			<li><a href="post2.html" target="_blank">post2.html</a></li>
		</ul>
		<hr />
		<p><a href="../index.html">戻る</a></p>
	</body>

</html>