方法:
1、利用find()和eq()方法根据指定列的索引值获取指定列的元素对象,语法为“tr元素对象.find('th或td元素对象:eq(索引值)')”;
2、利用hide()方法将获取的指定列隐藏即可,语法为“指定列对象.hide()”。
jquery怎么隐藏table列
find() 方法返回被选元素的后代元素。
eq() 方法返回带有被选元素的指定索引号的元素。
索引号从 0 开头,所以第一个元素的索引号是 0(不是 1)。
$(selector).eq(index)
- index 必需。规定元素的索引。可以是整数或负数
hide() 方法隐藏被选元素。
$(selector).hide(speed,easing,callback)
- speed 可选。规定隐藏效果的速度。
- easing 可选。规定在动画的不同点上元素的速度。默认值为 "swing"。
- callback 可选。hide() 方法执行完之后,要执行的函数。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>123</title>
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$(".btn1").click(function(){
$('tr').find('th:eq(0)').hide();
$('tr').find('td:eq(0)').hide();
});
$(".btn2").click(function(){
$('tr').find('th:eq(0)').show();
$('tr').find('td:eq(0)').show();
});
});
</script>
</head>
<body>
<table border="1">
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<button class="btn1">隐藏</button>
<button class="btn2">显示</button>
</body>
</html>
点击显示元素再次点击隐藏元素
<script>
$(function(){
$('#anniu').click(function(){//点击按钮
if($('#test').is(':hidden')){//如果当前隐藏
$('#test').show();//点击显示
}else{//否则
$('#test').hide();//点击隐藏
}
})
})
</script>
<script>
$(document).ready(function(){ //单击表头,隐藏第四列,再单击显示
$(".table1").click(function() { //table1为表头class
alert("you clicked me");
if($('.table1 th:eq(5)').is(':hidden')){ //如果当前隐藏
$('.table1 th:eq(5)').show();//点击显示
}else{//否则
$('.table2 th:eq(5)').hide();//点击隐藏
}
});
});
</script>