-1

我需要一个只能显示某些列的表格,具体取决于是否选中了复选框。如果选中,我希望显示所有列。如果未选中,我需要它只显示“每周”类列。我想使用尽可能少的 JavaScript(如果有的话)并且需要跨浏览器兼容

 <table>
   <tr class="weekly">
     <td></td>
   </tr>
   <tr class="overall">
     <td></td>
   </tr>
 </table>
 <input type="checkbox" name="data" value="Show Overall Data"  />

简而言之,我需要一个表格来隐藏和显示某些列,具体取决于复选框的状态。

另外,我不擅长编码,所以我需要有人粘贴整个代码,包括 HTML 标签等等。

4

4 回答 4

2

Javascript

function check()
{

  if(document.getElementById("weekly").style.display == "none")
    document.getElementById("weekly").style.display = "block";
  else
    document.getElementById("weekly").style.display = "none";
  if(document.getElementById("overall").style.display == "block")
   document.getElementById("overall").style.display = "none";
  else
   document.getElementById("overall").style.display = "block";

}

和 HTML

<table>
   <tr class="weekly" id="weekly" style="display:none">
     <td>ABBB</td>
   </tr>
   <tr class="overall" id="overall" style="display:none">
     <td>BCC</td>
   </tr>
 </table>
<input type="checkbox" name="data" value="Show Overall Data" onclick="check()"/>
于 2012-05-05T04:48:48.230 回答
1

已编辑:此处为完整的 html。使用 jQuery

<html>
<head>
<script type="text/javascript" src="jquery.min.js"></script>
<script>

$(document).ready(function(){


if ($("input:checkbox").is(":not(:checked)")){
    $('tr').hide();
   $('tr.weekly').show();
}

});
</script>
</head>
<body>
<input type="checkbox" name="data"/>

<table>
   <tr class="weekly">
     <td>WEEEKLY</td>
   </tr>
   <tr class="overall">
     <td>OVERLLL</td>
   </tr>
 </table>

</body>
</html>
于 2012-05-05T04:32:10.083 回答
0

使用 jQuery

$(document).ready(function () {
    $('.overall').hide();
}); 

$("#data").is(':checked')
    ? $(".overall").show() 
    : $(".overall").hide();

将名称 =“数据”更改为 Id =“数据”

于 2012-05-05T04:32:42.560 回答
0

基于@anu 在较早的 stackoverflow 答案中指出的示例,这是 jsbin 中的一个实时示例。

http://jsbin.com/ehodul/4/edit#javascript,html,live

下面是(大部分)代码,但我再次鼓励您修改 jsbin 上的示例。

<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="jquery.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
<style>
  article, aside, figure, footer, header, hgroup, 
  menu, nav, section { display: block; }
  table { padding: 0; border-collapse: collapse; }
  table th { background-color: #eee; }
  table td, th { border: 1px solid #d7d7d7; padding: 7px; }
</style>
</head>
<body>


<select id="myOptions">
  <option value="1">hide col 1</option>
  <option value="2">hide col 2</option>
  <option value="3">hide col 3</option>
  <option value="4">hide col 4</option>
</select>  

  <p>&nbsp;</p>

<table id="myTable" cellspacing="0" cellpadding="0">
  <thead>
    <tr>
      <th>col 1</th>
      <th>col 2</th>
      <th>col 3</th>
      <th>col 4</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>1abcdefg</td>
      <td>2abcdefg</td>
      <td>3abcdefg</td>
      <td>4abcdefg</td>
    </tr>
    <tr>
      <td>1abcdefg</td>
      <td>2abcdefg</td>
      <td>3abcdefg</td>
      <td>4abcdefg</td>
    </tr>
    <tr>
      <td>1abcdefg</td>
      <td>2abcdefg</td>
      <td>3abcdefg</td>
      <td>4abcdefg</td>
    </tr>
    <tr>
      <td>1abcdefg</td>
      <td>2abcdefg</td>
      <td>3abcdefg</td>
      <td>4abcdefg</td>
    </tr>
  </tbody>
  </table>  

  <script type="text/javascript">
function hideColumn(columnIndex) {
   $('#myTable thead th, #mytable tbody td').show();
   $('#mytable thead th:nth-child('+(columnIndex)+'), #mytable tbody td:nth-child('+(columnIndex)+')').hide();

}

    $("#myOptions").change(function() {
      selectedVal = $(this).val();
      console.log(selectedVal);
      hideColumn( selectedVal );
    });

  </script>
</body>
</html>
于 2012-05-05T04:57:41.710 回答