web简化版todolist记录完成和未完成的事件

简化版todolist是基于浏览器的本地存储,就是将自己的数据存储到浏览器本地,但更换浏览器后,数据就不会存在。后面可以与服务器连接后使todolist更贴近实际情况。

html代码如下(引用的JS文件的名字叫:原生.JS)

<!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">
    <link rel="stylesheet" href="CSS/index.css">
    <!-- <script src="JS/jquery.min.js"></script> -->
    <!-- <script src="JS/index.js"></script> -->
    <title>todilist</title>
</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 class="selt">
        <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 &copy; 2014 todolist.cn
    </footer>


</body>
    <script src="JS/原生.js"></script>
</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 {
    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;
    }
}

Javescript的代码如下

var todolist = document.getElementById("todolist"); //获取代做事情的ul标签
var donelist = document.getElementById("donelist"); //获取做完事情的ol标签
var btn = document.getElementById("title");     获取输入事件的input标签
loadThings();        //动态渲染函数
function readDate(){
    var list = localStorage.getItem("todo");       //从本地内存中获取数据todo
    if(list !== null){
        return JSON.parse(list);      //将获取到的字符串转化为数组对象
    }else{
        return []
    }
}
function setDate(list){
    var local = JSON.stringify(list)         //将数组转化为字符串,这样才能存入本地存储中
    localStorage.setItem("todo",local);
}
function loadThings(){  //动态渲染函数
    var listThing = readDate(); //读取本地存储的事情
    todolist.innerHTML = ''; //清除方法有很多,这里用innerHTML来清除,JQ中用empty
    donelist.innerHTML = ''; //清除方法有很多,这里用innerHTML来清除,JQ中用empty
    for(var i=0;i<listThing.length;i++){
        var li = document.createElement("li");   //动态创建li                
        li.setAttribute("count",i);             //这个变量用来记录下存储信息的顺序
        if(listThing[i].flag == true){
            li.innerHTML = "<input type='checkbox' checked = 'checked' class='temp'><P>"+listThing[i].title+"</p><a href='javascript:;'></a>"
            donelist.insertBefore(li,donelist.children[0]);     //使后添加的元素在最前面
        }else{
            li.innerHTML = "<input type='checkbox' class='temp'><P>"+listThing[i].title+"</p><a href='javascript:;'></a>"
            todolist.insertBefore(li,todolist.children[0]); //使后添加的元素在最前面
        }
    }
    delectItem();
    changeSelect();
}
function changeSelect(){             //选择框互换函数,可以修改函数互换的值
    var listtemp = document.querySelector(".selt").querySelectorAll("input");  //获取ol,ul中所有的input元素
    var listThing = readDate();        
    for(let i=0;i<listtemp.length;i++){      //遍历获取的input
        listtemp[i].onclick = function(){   //添加实践
            var index = this.parentNode.getAttribute("count");
            console.log(listThing[index].title);
            console.log(this.checked);
            listThing[index].flag = this.checked;
            setDate(listThing);
            loadThings()
        }
    }
}
function delectItem(){
    var delectbtn = document.querySelectorAll("a");
    var listThing = readDate();
    for(let i=0;i<delectbtn.length;i++){
            delectbtn[i].onclick = function(){
            index = this.parentNode.getAttribute("count");
            listThing.splice(index,1);
            setDate(listThing);
            loadThings();
        }
    }
}
btn.addEventListener('keydown',function(e){
    if(e.key == "Enter"){
        var listNewThing = readDate();
        var thing = {title:this.value,flag:false};
        listNewThing.push(thing);
        setDate(listNewThing);
        loadThings();
    }
})

 

 

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
好的,下面是一个使用React和TypeScript完成TodoList示例: 首先,创建一个React组件:TodoList.tsx ```tsx import React, { useState } from "react"; interface TodoItem { id: number; content: string; completed: boolean; } const TodoList = () => { const [todos, setTodos] = useState<TodoItem[]>([]); const [inputValue, setInputValue] = useState(""); const handleAddTodo = () => { if (inputValue.trim() === "") return; const newTodo: TodoItem = { id: todos.length, content: inputValue, completed: false }; setTodos([...todos, newTodo]); setInputValue(""); }; const handleToggleTodo = (id: number) => { const updatedTodos = todos.map(todo => todo.id === id ? { ...todo, completed: !todo.completed } : todo ); setTodos(updatedTodos); }; const handleDeleteTodo = (id: number) => { const updatedTodos = todos.filter(todo => todo.id !== id); setTodos(updatedTodos); }; return ( <div> <h1>Todo List</h1> <div> <input type="text" value={inputValue} onChange={e => setInputValue(e.target.value)} /> <button onClick={handleAddTodo}>Add</button> </div> <ul> {todos.map(todo => ( <li key={todo.id} style={{ textDecoration: todo.completed ? "line-through" : "none" }} > {todo.content} <button onClick={() => handleToggleTodo(todo.id)}> {todo.completed ? "Uncomplete" : "Complete"} </button> <button onClick={() => handleDeleteTodo(todo.id)}>Delete</button> </li> ))} </ul> </div> ); }; export default TodoList; ``` 在这个组件中,我们定义了一个状态todos来存储所有的待办事项,以及一个状态inputValue来存储用户输入的新待办事项的内容。我们通过useState Hook来定义这些状态。 我们还定义了三个处理函数handleAddTodo、handleToggleTodo和handleDeleteTodo来添加、切换完成状态和删除待办事项。我们通过map函数来遍历todos数组,以便将每个待办事项渲染为一个li元素。 最后,我们导出TodoList组件。 接下来,在App.tsx中使用TodoList组件: ```tsx import React from "react"; import TodoList from "./TodoList"; const App = () => { return ( <div> <TodoList /> </div> ); }; export default App; ``` 现在,我们就可以在浏览器中查看TodoList应用程序了。 注:在使用前需要先安装React和TypeScript的依赖。在终端中执行以下命令: ```sh npm install react react-dom npm install --save-dev typescript @types/react @types/react-dom ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值