1 Star 0 Fork 0

yuhenabc / hello-backbone

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
index.html 1012 Bytes
一键复制 编辑 原始数据 按行查看 历史
yuhenabc 提交于 2017-11-26 18:25 . use jbone instead of jquery
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=3, minimum-scale=1, user-scalable=no">
<title>Backbone.js Todos</title>
<link rel="stylesheet" href="css/todos.css"/>
<link rel="shortcut icon" type="image/ico" href="favicon.ico">
</head>
<body>
<div id="todoapp">
<header>
<h1>工作清单</h1>
<input id="new-todo" type="text" placeholder="你想干啥?">
</header>
<section id="main">
<input id="toggle-all" type="checkbox">
<label for="toggle-all">全部完成</label>
<ul id="todo-list"></ul>
</section>
<footer>
<a id="clear-completed">清除已完成项</a>
<div id="todo-count"></div>
</footer>
</div>
<div id="instructions">双击编辑每一项</div>
<script src="js/jbone.js"></script>
<script src="js/underscore.js"></script>
<script src="js/backbone.js"></script>
<script src="js/backbone.localStorage.js"></script>
<script src="js/todos.js"></script>
</body>
</html>
JavaScript
1
https://gitee.com/yuhenabc/hellobackbone.git
git@gitee.com:yuhenabc/hellobackbone.git
yuhenabc
hellobackbone
hello-backbone
master

搜索帮助