核心思路:
? ? ? ? 为了防止页面刷新时数据丢失,我们可以把数据保存到我们的本地存储 localStorage 里面。因为在我们的?localStorage 中,数据是以字符串格式存储的,但是我们的数据列表是一个数组(对象),因此我们在把数据存放到?localStorage 中时,要先用 JSON.stringify() 方法 把数据转换成字符串形式,同理,我们在读取数据时,也要做一个转换,用?JSON.parse() 方法把所获取的数据格式转换成对象格式的。
1、我们封装了3个函数:
-
getDate()? ?读取本地存储的数据 -
saveData(data)保存数据到本地存储 -
load()渲染页面
2、添加操作:
当我们在输入框中输入要添加的内容,点击回车按钮,自动添加到正在进行的列表中
if(按的是回车键){
}
3、删除操作
- 获取本地存储的数据
- 获取当前被点击小 li 的 id
- 根据 id 删除本地存储中对应的数据
- 保存数据到本地存储
- 渲染页面
4、勾选正在进行以及已经完成中的小复选框
- 获取本地存储的数据
- 获取当前被点击小 li 的 id
- 根据 id 修改data数据中的done为被选中状态
- 保存数据到本地存储
- 渲染页面
实现效果:
?
HTML代码:
<body>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>ToDoList—最简单的待办事项列表</title>
<link rel="stylesheet" href="css/index.css">
<script src="./js/jquery.min.js"></script>
<script src="js/index.js"></script>
</head>
<body>
<header>
<section>
<label for="title">ToDoList</label>
<input type="text" id="title" name="title" placeholder="添加ToDo" required="required" autocomplete="off" />
</section>
</header>
<section>
<h2>正在进行 <span id="todocount"></span></h2>
<ol id="todolist" class="demo-box">
</ol>
<h2>已经完成 <span id="donecount"></span></h2>
<ul id="donelist">
</ul>
</section>
<footer>
Copyright © 2021 todolist.cn
</footer>
</body>
</html>
</body>
</html>
CSS代码:
body {
margin: 0;
padding: 0;
font-size: 16px;
background: #CDCDCD;
}
header {
height: 50px;
background: #333;
background: rgba(47, 47, 47, 0.98);
}
section {
margin: 0 auto;
}
label {
float: left;
width: 100px;
line-height: 50px;
color: #DDD;
font-size: 24px;
cursor: pointer;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
header input {
float: right;
width: 60%;
height: 24px;
margin-top: 12px;
text-indent: 10px;
border-radius: 5px;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.24), 0 1px 6px rgba(0, 0, 0, 0.45) inset;
border: none
}
input:focus {
outline-width: 0
}
h2 {
position: relative;
}
span {
position: absolute;
top: 2px;
right: 5px;
display: inline-block;
padding: 0 5px;
height: 20px;
border-radius: 20px;
background: #E6E6FA;
line-height: 22px;
text-align: center;
color: #666;
font-size: 14px;
}
ol,
ul {
padding: 0;
list-style: none;
}
li input:first-child {
position: absolute;
top: 2px;
left: 10px;
width: 22px;
height: 22px;
cursor: pointer;
}
li input:nth-child(2) {
position: absolute;
top: 2px;
left: 50px;
width: 80%;
height: 20px;
padding-left: 5px;
border-radius: 10px;
}
p {
margin: 0;
}
li p input {
top: 3px;
left: 40px;
width: 70%;
height: 20px;
line-height: 14px;
text-indent: 5px;
font-size: 14px;
}
li {
height: 32px;
line-height: 32px;
background: #fff;
position: relative;
margin-bottom: 10px;
padding: 0 45px;
border-radius: 3px;
border-left: 5px solid #629A9C;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
}
ol li {
cursor: move;
}
ul li {
border-left: 5px solid #999;
opacity: 0.5;
}
li a {
position: absolute;
top: 2px;
right: 5px;
display: inline-block;
width: 14px;
height: 12px;
border-radius: 14px;
border: 6px double #FFF;
background: #CCC;
line-height: 14px;
text-align: center;
color: #FFF;
font-weight: bold;
font-size: 14px;
cursor: pointer;
}
footer {
color: #666;
font-size: 14px;
text-align: center;
}
footer a {
color: #666;
text-decoration: none;
color: #999;
}
@media screen and (max-device-width: 620px) {
section {
width: 96%;
padding: 0 2%;
}
}
@media screen and (min-width: 620px) {
section {
width: 600px;
padding: 0 10px;
}
}
js代码:
$(function() {
// 刷新页面不会丢失数据,因此需要用到本地存储localStorage
// 存储的数据格式:var todolist=[{title:'aaa',done:false}]
// 页面一加载就渲染
load();
// 添加操作
$('#title').on('keydown', function(event) {
if (event.keyCode === 13) {
// 说明用户按下了回车键
if ($(this).val() === "") {
alert('请输入内容!')
} else {
// 1、先读取本地存储原来的数据
var local = getDate(); // 是一个数组
// console.log(typeof(local));
// 2、把local数组进行数据更新,把最新的数据追加给local数组
local.push({ title: $(this).val(), done: false });
// 3、把这个数组local 存储到本地存储
saveData(local);
// 4、将todolist 本地存储的数据渲染加载到页面
load();
}
}
});
// 删除操作
$('ol,ul').on('click', 'a', function() {
// 1、先获取本地存储
var data = getDate();
// 2、修改数据
// 获取当前a的id
var index = $(this).attr('id');
data.splice(index, 1); // 删除索引号对应的数据
// 3、保存到本地存储
saveData(data);
// 4、重新渲染页面
load();
})
// todolist正在进行和已经完成选项操作
$('ol,ul').on('click', 'input', function() {
// alert(123);
// 1、先获取本地存储
var data = getDate();
// 2、修改数据
// 获取当前复选框的索引
var index = $(this).siblings('a').attr('id');
data[index].done = $(this).prop('checked');
// 3、保存到本地存储
saveData(data);
// 4、重新渲染页面
load();
})
// 读取本地存储的数据
function getDate() {
// 1、先获取本地存储的数据
var data = localStorage.getItem('todolist');
if (data !== null) {
// 本地存储里面的数据是字符串格式的,但是我们需要的是对象格式的
// 如果数据不为空,那么将获取到的数据转换成对象格式的
return JSON.parse(data); // 是一个数组
} else {
// 返回一个空的数组
return [];
}
};
// 保存本地存储数据
function saveData(data) {
// 相当于更新数组
// 先把数据转换成字符串的格式
localStorage.setItem('todolist', JSON.stringify(data));
};
// 渲染加载数据
function load() {
// 1、获取本地存储的数据
var data = getDate();
// console.log(data);
// 先清空ol、ul里面的元素内容
$('ol,ul').empty();
// 已经完成的个数
var donecount = 0;
// 正在进行的个数
var todocount = 0;
// 2、遍历数据
$.each(data, function(i, n) {
if (n.done) {
$('ul').prepend('<li><input type="checkbox" checked><p>' + n.title + '</p> <a href="javascript:;" id=' + i + '></a> </li>');
donecount++;
} else {
// 在a标签中自定义一个id的属性
$('ol').prepend('<li><input type="checkbox"><p>' + n.title + '</p> <a href="javascript:;" id=' + i + '></a> </li>');
todocount++;
}
});
$('#todocount').text(todocount);
$('#donecount').text(donecount);
};
})
|