todolist实现过程,完整代码

todolist实现过程,完整代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            font-size: 16px;
            background: #CDCDCD;
        }

        header {
            height: 50px;
            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 {
            position: absolute;
            top: 2px;
            left: 10px;
            width: 22px;
            height: 22px;
            cursor: pointer;
        }

        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;
            }
        }
        
    </style>
    <!-- 进入我们的jquery,引入之后才可以使用 -->
    <script src="./jquery-1.12.4.min.js"></script>
</head>

<body>
    <!-- 头部 开始-->
    <header>
        <section>
            <label for="title">ToDoList</label>
            <input type="text" id="title" name="title" placeholder="添加ToDo" required="required">
        </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 © 2014 todolist.cn
        <a href="">clear</a>
    </footer>
</body>
<script>

    $(function () {
        load();
        // 1、按下回车 把完整数据 存储到本地存储里面
        //对象.on("事件类型",事件函数)
        $("#title").on("keydown", function (event) {
            if (event.keyCode === 13) {
                console.log($(this));
                if ($(this).val() === "") {
                    alert("请输入您要进行的操作");
                } else {
                    // 先读取本地存储原来的数据;
                    // console.log(getDate());
                    var local = getDate();
                    // 把local数组进行更新数据 把最新的数据追加给local数组
                    local.push({ title: $(this).val(), done: false });
                    // 把这个数组local 存储给本地存储
                    saveDate(local);
                    // 2、把本地存储的数据渲染到页面
                    load();
                    $(this).val("");
                }
            }

        })
        // 3、todolist 删除事件
        $("ol,ul").on("click", "a", function () {
            // 先获取本地存储
            var data = getDate();
            // 修改数据(attr可以获取我们自定义的属性)
            var index = $(this).attr("id");
            // 数组 删除操作
            data.splice(index, 1);
            // 保存到本地存储
            saveDate(data);
            // 重新渲染页面
            load();
        })
        // 4、正在进行和已经完成选项操作
        // 并集选择器 点击事件 事件委托
        // 将事件绑定在父元素身上,当子元素触发事件时,事件冒泡给父元素,父元素相应事件,this代表触发事件的子元素;
        $("ol,ul").on("click", "input", function () {
            // 先获取本地存储数据
            var data = getDate();
            // 修改数据
            // input 的索引号 就是当前 它 兄弟 的索引号
            var index = $(this).siblings("a").attr("id");
            // console.log(index);
            data[index].done = $(this).prop("checked");
            // 保存到本地存储
            saveDate(data);
            // 重新渲染页面
            load();
        })
        // 先读取本地存储原来的数据(因为经常使用所以封装为函数)
        function getDate() {
            // 思路:先去本地存储里面把 todolist 获取出来(需要判断一下,它是否为空,如果为空,说明我们从未在里面存储过数据,所以返回空的数组;不为空,说明里面有数据,将数据转换为对象形式我们才可以使用)
            var data = localStorage.getItem("todolist");
            if (data !== null) {
                // 本地存储里面的数据是字符串格式的 但是我们需要的是对象格式的
                return JSON.parse(data);
            } else {
                return [];
            }
        }
        // 保存本地存储数据(localStorage 里面只能存储字符串格式,因此将对象转换为字符串JSON.stringify();)
        function saveDate(data) {
            localStorage.setItem("todolist", JSON.stringify(data));
        }
        // 渲染加载数据
        function load() {
            // 读取本地存储的数据
            var data = getDate();
            // console.log(data);
            // 遍历之前 先要清空ol里面的元素内容
            $("ol,ul").empty();
            // 5、统计个数
            var todoCount = 0;
            var doneCount = 0;
            // 遍历这个数据
            $.each(data, function (i, n) {
                if (n.done) {
                    $("ul").prepend("<li><input type='checkbox' checked='checked';><p>" + n.title + "</p><a href='javascript:;' id=" + i + "></a></li>");
                    doneCount++;
                } else {
                    $("ol").prepend("<li><input type='checkbox'><p>" + n.title + "</p><a href='javascript:;' id=" + i + "></a></li>");
                    todoCount++;
                }
            })
            // 全部遍历完毕 才进行的修改
            $("#todocount").text(todoCount);
            $("#donecount").text(doneCount);
        }
    })
</script>
</html>
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值