Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
833 views
in Technique[技术] by (71.8m points)

datatables - Hide all the child element which are shown in table using jQuery

When I apply search on the table, I'm trying to hide all the shown children of the table row. But I'm unable to do so. Here is my code. Don't know what's wrong.

var table = $("#tblTemplateList").DataTable();
$("#tblTemplateList tr").each(function(index,tr){
  if($(tr).child.isShown()){
    $(tr).child.hide();
  }
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

this small example

function hiderows() {
  $("#tblTemplateList tr").each(function(index, tr) {
    if ($(tr).is(":visible")) {
      $(tr).hide();
    } else {
      $(tr).show();
    }
  });
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<table id="tblTemplateList">
<tr><td>row1</td></tr>
<tr><td>row2</td></tr>
</table>

<button type="button" onclick="hiderows()">
Hide/Show Rows
</button>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...