2

我有 jscript 来切换 div 以上下滑动。我想在回发期间保持这些 div 的状态。我在其他帖子上阅读过我可以使用 cookie 和隐藏字段,但是当我的 jscript 使用多个 div 时,我不知道如何使用它。

脚本:

<script type="text/javascript">
    $(document).ready(function () {
        $(".toggle").slideUp(0);
        $(".trigger").click(function () {
            $(this).next(".toggle").slideToggle("slow");
        });
    });
</script>

HTML:

<h3 class = "trigger">Section 1</h3>
<div class = "toggle">
    <p> Item 1 </p>
</div>

<h3 class = "trigger">Section 2</h3>
<div class = "toggle">
    <p> Item 1 </p>
</div>
4

1 回答 1

1

感谢用户:noth1ng 找到了解决方案。 https://forum.jquery.com/topic/slidetoggle-on-multiple-divs-to-maintain-state-during-postbacks

于 2012-08-08T10:57:26.370 回答