我正在使用以下代码展开和折叠。
<script type="text/javascript">
function toggle_visibility(id) {
var e = document.getElementById(id);
if(e.style.display == 'block')
e.style.display = 'none';
else
e.style.display = 'block';
}
</script>
<a href="#" onclick="toggle_visibility('id1');" >Click here to toggle visibility of element #foo</a>
<div id="id1">This is foo</div>
<a href="#" onclick="toggle_visibility('id2');" >Click here to see wonder</a>
<div id="id2">This is foo</div>
折叠时我想要+(加)图像,展开时想要-(减)图像。请帮我写代码来做到这一点。
提前致谢。