求教如何显示图片
请教:在以下代码的基础上如何让这棵树关闭时节点前显示一个图片(如:附件一),展开时节点前显示另一个图片(如:附件二)
<html>
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script Language="javaScript">
<!--
function Expand(sid){
if (document.all(sid).style.display=="none"){
document.all(sid).style.display="";
}else{
document.all(sid).style.display="none";
}
}
-->
</script>
</head>
<body bgcolor="#FAFFFF" text="#000000">
<p class="textfont"><font face="楷体_GB2312">
<div align="center">
<br>
<span onclick=Expand('fe1')>[A]</span><br>
<div id=fe1 style=display:"none">
┣a1<br>
┣a2<br>
┣a3<br>
┗a4<br>
</div>
<span onclick=Expand('fe2')>[B]</span><br>
<div id=fe2 style=display:"none">
┣b1<br>
┣b2<br>
┣b3<br>
┗b4<br>
</div>
</div>
</div>
</p>
</body>
</html>