js 表格拼接

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>
  <body>
    <table border="1" cellpadding="20" cellspacing="0">
      <thead>
        人員周產能狀況
        <tr>
          <td>姓名</td>
          <td>週一</td>
          <td>週二</td>
          <td>週三</td>
          <td>週四</td>
          <td>週五</td>
          <td>週六</td>
          <td>週日</td>
        </tr>
      </thead>
      <tbody id="contain"></tbody>
    </table>
    <script>
      var arrList = [
        ["张三", 40, 50, 60, 55, 40, 70, 60],
        ["李四", 40, 50, 60, 55, 40, 70, 60],
        ["王五", 40, 50, 60, 55, 40, 70, 60],
        ["赵六", 40, 50, 60, 55, 40, 70, 60],
      ];
      var arr = [
        "F168554",
        "张三",
        "白班",
        "F2222",
        "李四",
        "晚班",
        "234",
        "王五",
        "白班",
        "F567",
        "赵六",
        "晚班",
      ];
      var arrs = [];
      arr.forEach((element, index) => {
        if (index % 3 == 1) {
          // console.log(element)
          arrs.push(element);
        }
      });
      //   console.log(111, arrs);
      var str = "";
      arrList.forEach((item) => {
        str += "<tr>";
        str += `<td>${item[0]}</td>`;
        item.slice(1).forEach((cell) => {
          str += `<td class="${cell > 50 ? "pink" : ""}">${cell}</td>`;
        });
      });
      // 将定义好的内容,写入到tbody标签中
      contain.innerHTML = str;
    </script>
    <style>
      table {
        border: 1px solid blueviolet;
      }
      .pink {
        background-color: pink;
      }
    </style>
  </body>
</html>



進階版本


<!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>
  </head>
  <style>
    .table_sub {
      border-collapse: collapse;
      overflow: scroll;
      width: 100%;
    }
    table.table_sub td {
      padding: 0.3rem 0;
      font-size: 1rem;
      border-bottom: 1px groove #00e0db;
    }
    td {
      border: 1px solid #333;
    }

    .Moduleall {
      width: 100%;
      cursor: pointer;
      text-align: center;
    }
    .ModuleCss {
      /* background-color:#012141; */
      /* color:#ffff */
    }
    .green {
      background-color: green;
    }
    .yellow {
      background-color: yellow;
    }
    .red {
      background-color: red;
    }
    .blue {
      background-color: blue;
    }
  </style>
  <body>
    <div class="Moduleall">
      <table border="0px" id="mytable" class="table_sub">
        <tr>
          <td colspan="8" height="40px">模組實時狀態</td>
        </tr>
        <tr>
          <td width="16%">總控</td>
          <td width="20%">運行中綠色</td>
          <td width="20%">故障中紅色</td>
          <td width="20%">等待中黃色</td>
          <td width="20%">屏蔽中藍色</td>
        </tr>
        <tbody id="tb" class="ModuleCss"></tbody>
      </table>
    </div>

    <script>
      var str = "";
      var arr = [
        ["工件庫1", 1],
        ["工件庫2", 2],
        ["刀具庫1", 3],
        ["刀具庫2", 4],
        ["刀具庫3", 1],
        ["刀具庫4", 1],
        ["清洗幾", 1],
        ["CNC1", 2],
        ["CNC2", 1],
        ["CNC3", 1],
        ["CNC4", 3],
        ["CNC5", 1],
        ["CNC6", 1],
        ["CNC7", 1],
        ["CNC8", 1],
        ["CNC9", 1],
        ["CNC10", 1],
      ];
      const statusMap = {
        1: "green",
        2: "red",
        3: "yellow",
        4: "blue",
      };
      arr.forEach((ele) => {
        console.log(ele);
        str += "<tr>";
        str += `<td>${ele[0]}</td>`;
        console.log(222, str);
        let cell = ele[1];

        new Array(4).fill("").forEach((c, index) => {
          console.log(333, cell);
          const isCurrent = cell === index + 1;
        //   str += `<td class="${statusMap[cell]}"></td>`;
            str += `<td class="${isCurrent ? statusMap[cell] : ""}"></td>`;
        });
      });
      tb.innerHTML = str;
    </script>
  </body>
</html>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值