jquery怎么实现table的行折叠
3个回答
展开全部
如下代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script language="javascript" type="text/javascript" src="jquery.js"></script>
<script language="javascript" type="text/javascript">
function show_and_hide_tr(tb_id, obj) {
$("#" + tb_id).find("tr").each(function(i) {
i > 0 ? (this.style.display == "none" ? this.style.display = "" : this.style.display = "none") : ($(this).next().css("display") == "none" ? (obj.value = "折叠") : (obj.value = "展开"));
});
}
</script>
</head>
<body>
<table id="tb1" style="width: 100%;" border="1">
<tr>
<th colspan="3">
<input type="button" value="折叠" onclick="show_and_hide_tr('tb1',this);" />
</th>
</tr>
<tr>
<td>
作者:ikmb QQ:154179812
</td>
<td>
欢迎交流
</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</table>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script language="javascript" type="text/javascript" src="jquery.js"></script>
<script language="javascript" type="text/javascript">
function show_and_hide_tr(tb_id, obj) {
$("#" + tb_id).find("tr").each(function(i) {
i > 0 ? (this.style.display == "none" ? this.style.display = "" : this.style.display = "none") : ($(this).next().css("display") == "none" ? (obj.value = "折叠") : (obj.value = "展开"));
});
}
</script>
</head>
<body>
<table id="tb1" style="width: 100%;" border="1">
<tr>
<th colspan="3">
<input type="button" value="折叠" onclick="show_and_hide_tr('tb1',this);" />
</th>
</tr>
<tr>
<td>
作者:ikmb QQ:154179812
</td>
<td>
欢迎交流
</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</table>
</body>
</html>
展开全部
当HashMap的成员比较少时Redis为了节省内存会采用类似一维数组的方式来紧凑存储,而不会采用真正的HashMap结构,这时对应的value的redisObject的encoding为zipmap,当成员数量增大时会自动转成真正的HashMap,此时encoding为ht。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2017-03-06
展开全部
slideUp;slideDown
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询