我有水平滑动 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();
});