溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何利用JavaScript差集實(shí)現(xiàn)一個(gè)對(duì)比小工具

發(fā)布時(shí)間:2021-07-13 13:37:06 來源:億速云 閱讀:133 作者:chen 欄目:開發(fā)技術(shù)

本篇內(nèi)容介紹了“如何利用JavaScript差集實(shí)現(xiàn)一個(gè)對(duì)比小工具”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

前言

在工作中需要每周統(tǒng)計(jì)人員提交材料情況又不想一個(gè)一個(gè)復(fù)制黏貼查找只好寫一個(gè)小工具幫自己查找誰沒提交材料

先把頁面搞一搞

<!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>
  <style>
    textarea {
      /* border: none; */
      width: 49%;
      height: 400px;

      /* font-size: 17pt; */

    }
    #btn {
      width: 100%;
      height: 50px;
      position: relative;
      top: 0px;
      /* position: absolute; */
    }

    #p2 {
      margin-left: 940px;
      margin-top: -38px;
    }
  </style>
</head>
<body>
  <button id="btn" class="ambi-light-button">對(duì)比</button>
  <textarea id="txt" type="text" placeholder="應(yīng)提交"></textarea>
  <textarea id="txt2" type="text" placeholder="已提交"></textarea>
  <hr>
  <p>未提交</p>
  <p id="p2">已提交未在人名單</p>
  <textarea id="txt3" type="text" placeholder="未提交"></textarea>
  <textarea id="txt4" type="text" placeholder="已提交未在人名單"></textarea>
</body>
</html>

如何利用JavaScript差集實(shí)現(xiàn)一個(gè)對(duì)比小工具

有點(diǎn)丑,無所謂了自己用

開始寫JS代碼

<script
 //先把輸入框,按鈕獲取一下
  let txt = document.querySelector('#txt')
  let txt2 = document.querySelector('#txt2')
  let txt3 = document.querySelector('#txt3')
  let txt4 = document.querySelector('#txt4')
  let btn = document.querySelector('#btn')
 //然后寫一個(gè)數(shù)組去重求差集
   const getDifference = function (a, b) {
   //解釋:如果傳入的兩個(gè)函數(shù)是數(shù)組 
    if (a.constructor === Array && b.constructor === Array) {
      let set1 = new Set(a);
      let set2 = new Set(b);
      // 利用Set去重,篩選找到差值
      return Array.from(new Set([...set1].filter(x => !set2.has(x))));
    }
    return null;
  }
  //簡簡單單給按鈕來一個(gè)點(diǎn)擊事件吧
  btn.onclick = function () {
    //應(yīng)提交人名單
    let Should_sub = txt.value.split('\n')
    //未提交人名單
    let already_sub = txt2.value.split('\n')
    let l3 = getDifference(Should_sub, already_sub)
    //未在人名單中提交人數(shù)
    let l4 = getDifference(already_sub, Should_sub)
    //篩選好的值反饋給頁面的兩個(gè)輸入框
    txt3.value = l3.join('\n')
    txt4.value = l4.join('\n')
  }
  </script>

“如何利用JavaScript差集實(shí)現(xiàn)一個(gè)對(duì)比小工具”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI