<script>
function toggle(e) {
if (e.style.display == "none")
{
btn_toggle.innerHTML = '<img id="btnimg" border="0" src="images/toggle_up.gif" width="15" height="15">不表示';
e.style.display = "block";
}
else
{
btn_toggle.innerHTML = '<img id="btnimg" border="0" src="images/toggle_down.gif" width="15" height="15">表示';
e.style.display = "none";
}
}
</script>
<body>
<div id="btn_toggle" onclick="toggle(HideShow);">
<img id="btnimg" border="0" src="images/toggle_up.gif" width="15" height="15">不表示
</div>
<div style="display:block; background-color:#EEE;" id="HideShow">
<br/>表示内容
</div>
</body>
posted on 2006-04-03 15:44
汪杰 阅读(220)
评论(0) 编辑 收藏 引用 所属分类:
hengxing网站js