-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjquery.html
44 lines (42 loc) · 1.32 KB
/
jquery.html
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
<!doctype html>
<html lang="en" data-framework="jquery">
<head>
<meta charset="utf-8">
<title>jQuery • TodoMVC</title>
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<section class="todoapp">
<header class="header">
<input class="new-todo" placeholder="What needs to be done?" autofocus>
</header>
<section class="main">
<input id="toggle-all" class="toggle-all" type="checkbox">
<label for="toggle-all">Mark all as complete</label>
<ul class="todo-list"></ul>
</section>
<footer class="footer">
<span class="todo-count"><strong>0</strong> 个未完成</span>
<ul class="filters">
<li>
<a class="filter-all" href="#/all">All</a>
</li>
<li>
<a class="filter-active" href="#/active">Active</a>
</li>
<li>
<a class="filter-completed" href="#/completed">Completed</a>
</li>
</ul>
<button class="clear-completed hide">Clear completed</button>
</footer>
</section>
<script id="footer-template" type="text/x-handlebars-template">
</script>
<script src="libs/jquery.js"></script>
<script src="libs/handlebars.js"></script>
<!--<script src="libs/director.js"></script>-->
<script src="js/util.js"></script>
<script src="js/app.js"></script>
</body>
</html>