当前位置 主页 > 网站技术 > 代码类 >

    jQuery模仿ToDoList实现简单的待办事项列表

    栏目:代码类 时间:2019-12-30 12:11

    功能:在文本框中输入待办事项按下回车后,事项会出现在未完成列表中;点击未完成事项前边的复选框后,该事项会出现在已完成列表中,反之亦然;点击删除按钮会删除该事项。待办事项的数据是保存到本地存储的(localStorage),就算关闭页面再打开,数据还是存在的(前提是要用相同浏览器)。

    ToDoList链接: ToDoList—最简单的待办事项列表

    先把css样式以及js文件引入进来,jQuery文件要写在你自己的js文件上边

    <link rel="stylesheet" href="css/index.css" rel="external nofollow" >
    <script src="js/jquery.min.js"></script>
    <script src="js/todolist.js"></script>

    HTML代码:

    <body>
      <header>
        <section>
          <label for="title">ToDoList</label>
          <input type="text"  name="title" placeholder="添加ToDo" required="required" autocomplete="off" />
        </section>
      </header>
      <section>
        <h2>正在进行 <span ></span></h2>
        <ol  class="demo-box">
        </ol>
        <h2>已经完成 <span ></span></h2>
        <ul >
        </ul>
      </section>
      <footer>
        Copyright © 2019 
      </footer>
    </body>

    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;
    }
    }