<!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>
<style type="text/css">
.open{ overflow:visible}
.close{ overflow:hidden}
dl{ overflow:hidden; height:16px}
</style>
<script type="text/javascript">
function setvisi()
{
var dtnode=event.srcElement;
var dlnode=dtnode.parentNode;
if(dlnode.className=="close")
{
dlnode.className="open";
}
else
{
dlnode.className="close";
}
}
</script>
</head>
<body>
<dl>
<dt onclick="setvisi()">上层目录</dt>
<dd>csafdcsasa</dd>
<dd>下层dasdas目录</dd>
<dd>下层asdasdsa目录</dd>
<dd>下层sa目录</dd>
</dl>
<dl>
<dt onclick="setvisi()">上层目录</dt>
<dd>下层xzdcas目录</dd>
<dd>下层目录</dd>
<dd>下层目录</dd>
<dd>下层目录</dd>
</dl>
</body>
</html>
为什么我写的这段html代码在实现展开闭合时,当展开第一个dl目录时会把下面的dl目录给覆盖掉?而不是随着dl的展开而把下一个dl封装的数据下移呢? |
|