当刷新页面确保保持在相同的div区域

时间:2016-05-03 08:04:42

标签: javascript jquery

当我点击我的下一个按钮并进入第2步时,如果我重新加载页面,我想确保它保持在我所在的同一个div上。

我使用的2个div是join_form_1join_form_2

当我重新加载页面时,它会回到第一个div

如何让它留在我所处的div上?

Codepen Example Here

$(document).ready(function(){

    $("#join_form_2").hide();
    $("#step_1_link").addClass("active");

    $("#next").click(function(){
        $("#step_1_link").removeClass("active");
        $("#step_2_link").addClass("active");
        $("#join_form_1").hide();
        $("#join_form_2").show();
    });

}); 

HTML

<div class="container">
    <div class="row">
        <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
            <div class="heading-message">
                <div class="text-center">
                    <i class="fa fa-user" aria-hidden="true"></i>
                </div>
                <div class="text-center">
                    <h1>Request A Admin Member Login</h1>
                </div>
            </div>
        </div>
    </div>
    <div class="row">

        <div class="col-lg-9 col-md-9 col-sm-12 col-xs-12">


            <ol class="steps list-inline">
                <li id="step_1_link">
                    <a href="">Step 1: Set up a personal account</a>
                </li>
                <li id="step_2_link">
                    <a href="">Step 2: Choose profile picture</a>
                </li>
            </ol>

            <div id="join_form_1">

            <div class="form-group">
            <label>Username</label>
            <input type="text" name="username" value="" class="form-control" placeholder="" />
            </div>

            <div class="form-group">
            <label>Email</label>
            <input type="text" name="email" value="" class="form-control" placeholder="" />
            </div>

            <div class="form-group">
            <label>Password</label>
            <input type="password" name="password" value="" class="form-control" placeholder="" />
            </div>

            <div class="form-group">
            <label>Confirm Password</label>
            <input type="password" name="confirm_password" class="form-control" placeholder="" />
            </div>

            <div class="form-group">
                <button type="button" class="btn btn-default" id="next">Next</button>
            </div>  

            </div><!-- Setup_1 -->

            <div id="join_form_2">

            <div class="form-group">
            <label>Upload A Image</label>
            <input type="file" name="userfile" size="50" />
            </div>

            </div><!-- Setup_1 -->

        </div>

        <div class="col-lg-3 col-md-3 col-sm-12 col-xs-12">
            <div class="info-box">
                <h2>You'll Love This Forum</h2>
            </div>
        </div>
    </div>
</div>

2 个答案:

答案 0 :(得分:1)

您可以使用javascript Cookie API here

因此,当用户点击“下一步”

 Cookies.set('active', 'join_form_2');

如果用户在上一个会话中点击,则显示表单2。

if (Cookies.get('active') == 'join_form_2') {
   $("#join_form_1").hide();
   $("#step_1_link").removeClass("active");
} else {
   $("#join_form_2").hide();
   $("#step_1_link").addClass("active");
}

Here正在使用codepen。

答案 1 :(得分:1)

最简单,最可靠的方法是使用Fragment_identifier:target伪选择器。

即使禁用了cookie,这也会有效。而且由于你使用的是bootstrap,因此很容易设置func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { let cell : CustomCell! = tableView.dequeueReusableCellWithIdentifier("ID_CustomCell", forIndexPath: indexPath) as! CustomCell cell.lblData.text = "Text" return cell } 标签,如按钮。

例如:

<a>
if (!window.location.hash) {
  window.location.hash = 'step1';
.steps:not(:target) {
  display: none;
}