js菜单点击显示或隐藏效果的简单实例
投稿:jingxian
本篇文章主要是对js菜单点击显示或隐藏效果的简单实例进行了介绍,需要的朋友可以过来参考下,希望对大家有所帮助
复制代码 代码如下:
<!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=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
function Show_Hidden(trid){
if(trid.style.display=="block"){
trid.style.display='none';
}else{
trid.style.display='block';
}
}
</script>
</head>
<body>
<a href="#" onclick="Show_Hidden(tr1)">申报旅游景区</a>
<table>
<tr id="tr1" style="display:none;">
<td>
旅游景区质量等级评定,是指对具有管理和服务机构的旅游景区进行评定,对园中园、景中景等内部旅游点,不进行单独评定。
</td>
</tr>
</table>
</body>
</html>