如何在页面刷新时通过javascript / jquery保持对DOM的更改

时间:2014-05-25 02:17:13

标签: javascript jquery html twitter-bootstrap twitter-bootstrap-3

我的问题是,当我点击一个链接(例如第二页)时,它将在屏幕上显示第二页。但是当我重新加载页面时,当前页面没有保存,而是恢复到默认页面。

如何将所需页面从刷新保留到默认页面?

JavaScript的:

<script type="text/javascript"> 
    $(function(){
        $('.one').show();
        $('.two').hide();
        $('.three').hide();
        $('#show_one, #show_one1').click(function(){
            $('.one').show();
            $('.two').hide();
            $('.three').hide();
            $('.modal').modal('hide');
            return false;
        });
        $('#show_two, #show_two2').click(function(){
            $('.one').hide();
            $('.two').show();
            $('.three').hide();
            $('.modal').modal('hide');
            return false;
        });
        $('#show_three, #show_three3').click(function(){
            $('.one').hide();
            $('.two').hide();
            $('.three').show();
            $('.modal').modal('hide');
            return false;
        });
    });
</script>

HTML:

<nav class="navbar navbar-default" role="navigation">
        <div class="container-fluid">

        <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
            <ul class="nav navbar-nav">
                <li><a href="" id="show_one"> One</a></li>
                <li><a href="" id="show_two"> Two</a></li>
                <li><a href="" id="show_three"> Three</a></li>
            </ul>

            <ul class="nav navbar-nav navbar-right">
                <a data-toggle="modal" data-target="#myModal"> Modal Dialog</a>
            </ul>
        </div>
        </div>
    </nav>


<div class="container">
                <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-hidden="true">
                    <div class="modal-dialog">
                        <div class="modal-content">
                            <div class="modal-body">
                                <form class="form-horizontal">
                                    <div class="form-group">
                                        <div class="col-sm-offset-2 col-sm-10">
                                            <button type="button" id="show_one1" class="btn btn-info" data-dismiss="modal" aria-hidden="true">One</button>
                                            <button type="button" id="show_two2" class="btn btn-info" data-dismiss="modal" aria-hidden="true">Two</button>
                                            <button type="button" id="show_three3" class="btn btn-info" data-dismiss="modal" aria-hidden="true">Three</button>
                                        </div>
                                    </div>
                                </form>
                            </div>
                        </div>
                    </div>
                </div>
</div>

<div class="container">
        <div class="one">
            <div class="row">
                <center>
                    Page 1
                </center>
             </div>
        </div>
        <div class="two">
            <div class="row">
                <center>
                    Page 2
                </center>
             </div>
        </div>
        <div class="three">
            <div class="row">
                <center>
                    Page 3
                </center>
             </div>
        </div>
</div>

2 个答案:

答案 0 :(得分:9)

当您使用javascript更改DOM的状态时,它将重置为页面重新加载时的实际状态。如果你想能够存储这种状态&amp;在重新加载时将DOM呈现为相同的状态,您必须使用 localStorage或sessionStorage 。在这种情况下,我将使用sessionStorage向您展示如何完成此操作。你可以在这里阅读差异 - http://www.w3schools.com/html/html5_webstorage.asp

工作示例

这是如何实现这一目标的完整工作示例 - http://codepen.io/nitishdhar/pen/DGHkw

您可以切换到某个页面&amp;然后刷新浏览器窗口&amp;它只会留在那个页面上。

详细说明

首先,您处理节目的方式可以像这样改进 -

您只需将一个公共类添加到您希望触发页面更改事件的所有链接/按钮中。在其中存储一个数据属性,用于定义单击时应打开的页面,如下所示 -

对于链接

<li><a href="#" class="show-page" data-page="one"> One</a></li>
<li><a href="#" class="show-page" data-page="two"> Two</a></li>
<li><a href="#" class="show-page" data-page="three"> Three</a></li>

注意课程&amp;我添加了data-page属性。另外我给了一个#到href,这样你就不必在点击事件上返回false。你也可以使用javascript:void(0);而不是#如果你不希望你的窗口哈希得到更新。

也适用于按钮

<button type="button" class="btn btn-info show-page modal-btn" data-page="one" data-dismiss="modal" aria-hidden="true">One</button>
<button type="button" class="btn btn-info show-page modal-btn" data-page="two" data-dismiss="modal" aria-hidden="true">Two</button>
<button type="button" class="btn btn-info show-page modal-btn" data-page="three" data-dismiss="modal" aria-hidden="true">Three</button>

我还在模式内部渲染的按钮上添加了一个modal-btn类。这是为了处理模态中的按钮仅处理模态隐藏事件。没有必要将modal('hide')附加到其他链接。

现在在你的javascript中使它工作,你会做这样的事情 -

$('.show-page').click(function(){
   /* Get the Page to Show */
   var pageToShow = $(this).data('page');
   /* Hide all pages first */
    $('.page').addClass('hide');
   /* Show the page whose link was clicked */
    $('.' + pageToShow).removeClass('hide');
 });

$('.modal-btn').click(function() {
    $('.modal').modal('hide');
});

因此我们尝试绑定具有类show-page的每个元素的click事件。然后点击,我们读取特定点击元素的数据页属性中的内容。然后我们隐藏所有页面&amp;仅显示其持有者被点击的人。这样您就不必为所有按钮编写单独的事件处理程序。

我也在分别处理隐藏模态。

使用会话存储

现在会话存储是浏览器存储,它将为当前会话保存一些数据,直到用户关闭浏览器窗口。

我们将维护一个变量,该变量将保存用户之前的最后一页,如下所示 -

/* Check if session has some page to show stored */
if(typeof(Storage)!== "undefined" && sessionStorage.getItem('pageToShow')) {
    var pageToShow = sessionStorage.getItem('pageToShow');
    /* Hide all pages first */
     $('.page').addClass('hide');
    /* Show the page whose link was clicked */
     $('.' + pageToShow).removeClass('hide');
    /* Also set this page to session storage */
     sessionStorage.setItem('pageToShow', pageToShow);
}

现在,当用户尝试移动到某个页面时点击事件,我们会不断更新会话变量'pageToShow',就像这样 -

$('.show-page').click(function(){
    /* Get the Page to Show */
    var pageToShow = $(this).data('page');
    /* Hide all pages first */
     $('.page').addClass('hide');
    /* Show the page whose link was clicked */
     $('.' + pageToShow).removeClass('hide');
     if(typeof(Storage)!=="undefined") {
        sessionStorage.setItem('pageToShow', pageToShow);
    }
});

现在,如果用户也刷新页面,我们将首先检查我们是否在会话中设置了pageToShow。如果我们这样做,我们将移动到那个页面,就像你想要的那样。

注意:如果您希望pageToShow变量在用户关闭后保持不变,则可以使用localStorage而不是sesstionStorage。稍后重新打开浏览器。

答案 1 :(得分:0)

将所有内容设置为<a href="javascript:void(0)">,您就会变得非常黄金。