index.html
2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?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>