日期:2014-05-16  浏览次数:20467 次

jquery 遍历table每行并隐藏td
如题:代码如下  
  function dotSelect()
  {
  if($("input[id$='Checkbox1']").attr("checked") == true)
  {
  alert("来了");
  $("#Mytable tr").each(function(){
   
  $(this).children().eq(4).hide();
  })
  }
  else
  {
  $("Mytable tr").each(function(){
  $("dis").show();
  })
  }
  }

<input id="Checkbox1" type="checkbox" onclick="dotSelect();" />

------解决方案--------------------
图片挂了。。$("#Mytable tr").each(function()看看这个遍历的是什么。。
$("Mytable tr").each(function(){
$("dis").show();
 这语句也有问题。。