-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
45 lines (42 loc) · 1.11 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>AJAX 非同步的Javascript 及 XML 技術</title>
<link rel="stylesheet" href="style.css">
<style>
a {
display: block;
width: 100%;
height: 100%;
font-size: 1.8rem;
}
</style>
</head>
<body>
<h1 class="header">AJAX 非同步的Javascript 及 XML 技術</h1>
<div class="types">
<a href="xhr.html">XMLHttpRequest</a>
</div>
<div class="types">
<a href="fetch.html">Fetch</a>
</div>
<div class="types">
<a href="jquery.html">jQuery</a>
</div>
<div class="types">
<a href="axios.html">axios</a>
</div>
<div class="types">
<a href="./app1/index.html">用ajax取代iframe</a>
</div>
<div class="types">
<a href="./app2/index.html">用ajax做CRUD功能</a>
</div>
<div class="types">
<a href="./app3/index.html">modal中的表單行為</a>
</div>
</body>
</html>