0

我有一张如下表:

左侧列出了菜单,顶部是徽标,右侧是列出数据等实际内容。

现在我想在用户点击时隐藏菜单并在再次点击时启用。

如何在java脚本中做到这一点?

下面是示例的图像:

在此处输入图像描述

4

1 回答 1

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>

更新

在线演示:http: //jsfiddle.net/DVxSy/

于 2012-10-12T10:24:56.563 回答