删除留言板

Tutorial: DOM实战 Category: JS Published: 2026-04-07 13:58:26 Views: 20 Likes: 0 Comments: 0

删除留言板案例

<!DOCTYPE html>
<html lang="en">
  <head>
    <style>
      * {
        margin: 0;
        padding: 0;
      }

      body {
        padding: 100px;
      }

      textarea {
        width: 200px;
        height: 100px;
        border: 1px solid pink;
        outline: none;
        resize: none;
      }

      ul {
        margin-top: 50px;
      }

      li {
        width: 300px;
        padding: 5px;
        background-color: rgb(245, 209, 243);
        color: red;
        font-size: 14px;
        margin: 15px 0;
      }

      li a {
        float: right;
      }
    </style>
  </head>

  <body>
    <textarea name="" id=""></textarea>

    <button>发布</button>

    <ul></ul>

    <script>
      // 1. 获取元素
      var btn = document.querySelector("button");
      var text = document.querySelector("textarea");
      var ul = document.querySelector("ul");

      // 2. 注册事件
      btn.onclick = function () {
        if (text.value == "") {
          alert("您没有输入内容");
          return;
        }

        // (1) 创建元素
        var li = document.createElement("li");
        li.innerHTML = text.value + "<a href='javascript:;'>删除</a>";

        // (2) 添加元素
        // ul.appendChild(li);
        ul.insertBefore(li, ul.children[0]);

        // (3) 删除元素 删除的是当前链接的li  它的父亲
        var as = document.querySelectorAll("a");
        for (var i = 0; i < as.length; i++) {
          as[i].onclick = function () {
            // node.removeChild(child); 删除的是 li 当前a所在的li  this.parentNode;
            ul.removeChild(this.parentNode);
          };
        }
      };
    </script>
  </body>
</html>