代码之家  ›  专栏  ›  技术社区  ›  Tyv

删除包含特定单词的单元格,如“否”bot,而不是包含“无”的单词[重复]

  •  0
  • Tyv  · 技术社区  · 5 年前

    这个问题已经有了答案:

    我已经删除了

    jQuery('td:contains(No)').parent().hide();
    

    但是包含以“no”开头的单词的单元格也将被删除。

    这是我呈现的HTML代码:

    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <table class="data-table" id="product-attribute-specs-table">
         <col width="25%" />
         <col />
         <tbody>
           <tr>
              <th class="label">Zusatz-Info</th>
              <td class="data">No</td>
           </tr>
           <tr>
               <th class="label">Info</th>
               <td class="data">Nothing</td>
           </tr>
         </tbody>
      </table>
    <script type="text/javascript">
      jQuery('td:contains(No)').parent().hide();
    </script>

    如何仅选择 TD 包含 ?

    感谢jquery新手的帮助。

    2 回复  |  直到 5 年前
        1
  •  0
  •   Mamun    5 年前

    你不能那么直接。一种可能的解决方案是 数据- 属性和 Attribute Equals Selector 如下所示:

    jQuery('td[data-flag=No').parent().hide();
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <table class="data-table" id="product-attribute-specs-table">
       <col width="25%" />
       <col />
       <tbody>
         <tr>
            <th class="label">Zusatz-Info</th>
            <td class="data" data-flag="No">No</td>
         </tr>
         <tr>
             <th class="label">Info</th>
             <td class="data" data-flag="Nothing">Nothing</td>
         </tr>
       </tbody>
    </table>
        2
  •  0
  •   Fiodorov Andrei    5 年前

     $(document).ready(function() {
        $("td").filter(function() {
          if($(this).text() === "No") {
          	$(this).parent().hide();
          }
      	});
     });
    <!DOCTYPE html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
        <title>Document</title>
    </head>
    <body>
      <table class="data-table" id="product-attribute-specs-table">
       <col width="25%" />
       <col />
       <tbody>
         <tr>
            <th class="label">Zusatz-Info</th>
            <td class="data" data-flag="No">No</td>
         </tr>
         <tr>
             <th class="label">Info</th>
             <td class="data" data-flag="Nothing">Nothing</td>
         </tr>
       </tbody>
    </table>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    </body>
    </html>

    试试这个:

     $(document).ready(function() {
        $("td").filter(function() {
          if($(this).text() === "No") {
            // remove text
            $(this).text('');
            // or hide tr
            $(this).parent().hide();
          }
        });
     });