我有一张表如下:
左侧已列出菜单,顶部是徽标,右侧是列出数据等实际内容。
现在我希望在用户点击时隐藏菜单,并在再次点击相同时启用。
如何在java脚本中执行此操作?
下面是样本的图像:
答案 0 :(得分:0)
<!DOCTYPE html>
<html>
<head>
<script src="jquery-latest.js"></script>
</head>
<body>
<table>
<tr>
<td id="cell">
Some info
</td>
</tr>
</table>
<input type="button" id="button" value="Show/hide" />
<script>
$("#button").click(function(){
$("#cell").toggle();
});
</script>
</body>
</html>
更新