index.html
1.95 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
<?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>3章.はじめの一歩</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>Chapter3 はじめの一歩 Sample Script</h2>
<hr />
<h3>3.1 Hello AJAX!</h3>
<ul>
<li><a href="hello_ajax.html" target="_blank">hello_ajax.html</a></li>
</ul>
<hr />
<h3>3.2 HTMLを画面内部に組み込む</h3>
<h4>3.2.1 ラジオボタンで切り替える</h4>
<ul>
<li><a href="innerhtml.html" target="_blank">innerhtml.html</a></li>
</ul>
<h4>3.2.2 テキストリンクで切り替える</h4>
<ul>
<li><a href="innerhtml2.html" target="_blank">innerhtml2.html</a></li>
</ul>
<hr />
<h3>3.3 子ウィンドウに組み込む</h3>
<h4>3.3.1 半透明の子ウィンドウを開く</h4>
<ul>
<li><a href="childwin1.html" target="_blank">childwin1.html</a></li>
</ul>
<h4>3.3.2 子ウィンドウをフェードアウトで消す</h4>
<ul>
<li><a href="childwin2.html" target="_blank">childwin2.html</a></li>
</ul>
<h4>3.3.3 ドラッグして移動させる</h4>
<ul>
<li><a href="childwin3.html" target="_blank">childwin3.html</a></li>
</ul>
<hr />
<p><a href="../index.html">戻る</a></p>
</body>
</html>