js实现复选框的全选和反选功能

  • Post author:
  • Post category:其他




一共需要实现两个功能,第一个是,当thead中的复选框选中☑️时,tbody中的复选框都选中checked,反之,都不选中;第二个是,当tbody中的复选框都选中时,thead中的复选框选中;当tbody中的复选框有一个没选中,thead中的复选框不选中。

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        * {
            padding: 0;
            margin: 0;
        }

        .wrap {
            width: 300px;
            margin: 100px auto 0;
        }

        table {
            



版权声明:本文为MRSLLLL_原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。