0

我有水平滑动 div 的 JQuery。在这些 div 中,我有一些对象,如果它们发生变化,则需要重新加载网页。问题是,例如,如果我用#page3 更改了 div 中的对象,重新加载会将我返回到具有#page1 的 div,因为它在网页加载时默认被选中。当用户在#page3 div 上更改对象时,如何实现这一点,#page3 div 在页面重新加载后保持选中状态。

查询:

 jQuery(function ($) {
    $('a.panel').click(function () {
        var $page = $($(this).attr('href')),
            $other = $page.siblings('.active');
        if (!$page.hasClass('active')) {
            $other.each(function (index, self) {
                var $this = $(this);
                $this.removeClass('active').animate({
                    left: $this.width()
                }, 500);
            });
            $page.addClass('active').show().css({
                left: -($page.width())
            }).animate({
                left: 0
            }, 500);
        }
        return false;
    });
    $('a.panel:nth(0)').click();
});
4

1 回答 1

0

将要更改的面板的 div 或索引的 id 作为查询参数发送回服务器。当页面在 url 的查询参数中重新加载时发回这个值。然后只需从 url 中提取页面加载时的值并使用 javascript 或 jquery 选择所述 div。

于 2013-09-10T09:16:20.390 回答