我使用以下代码进行展开和折叠。
<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>
崩溃时我想要+(加号)图像,扩展时我想要 - (减号)图像。 请帮我编写代码。
提前致谢。
答案 0 :(得分:0)
你能用jquery吗?请访问此fiddle
Js代码:
$(document).ready(function () {
$('#toggle-view li').click(function () {
var text = $(this).children('div.panel');
if (text.is(':hidden')) {
text.slideDown('200');
$(this).children('span').html('-');
} else {
text.slideUp('200');
$(this).children('span').html('+');
}
});
});