0

我正在使用以下代码展开和折叠。

<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>

折叠时我想要+(加)图像,展开时想要-(减)图像。请帮我写代码来做到这一点。

提前致谢。

4

1 回答 1

0

你能用jquery做到吗?请访问这个小提琴

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('+');     
        }

    });

});
于 2013-06-11T05:34:11.243 回答