JavaScript显示上一个标签

时间:2015-09-28 13:45:33

标签: javascript jquery html

好的,所以我创建了4个标签,一次只显示1个,但是如果我在标签4中的表单中发布了某些内容,则标签1变为活动但我希望它自动显示该标签的内容发表于。很抱歉,如果描述不好,但这里是我的代码:

<script src="../js/jquery-1.8.2.min.js" type="text/javascript"></script>
<script type="text/javascript">

$(document).ready(function() {

    //Default Action
    $(".tab_content").hide(); //Hide all content
    $("ul.tabs li:first").addClass("active").show(); //Activate first tab
    $(".tab_content:first").show(); //Show first tab content

    //On Click Event
    $("ul.tabs li").click(function() {
        $("ul.tabs li").removeClass("active"); //Remove any "active" class
        $(this).addClass("active"); //Add "active" class to selected tab
        $(".tab_content").hide(); //Hide all tab content
        var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
        $(activeTab).fadeIn(); //Fade in the active content
        return false;
    });

});
</script>


<center>
  <ul class="tabs">
    <li><a href="#tab1">Tab 1</a></li>
    <li><a href="#tab2">Tab 2</a></li>
    <li><a href="#tab3">Tab 3</a></li>
    <li><a href="#tab4">Tab 4</a></li>

  </ul>
  <div class="tab_container"><br><br><br>
    <div id="tab1" class="tab_content">
<center><h2>Tab 1</h2></center>
                </div>
                    <div id="tab2" class="tab_content">
<center><h2>Tab 2</h2></center>
                </div>
                    <div id="tab3" class="tab_content">
<center><h2>Tab 3</h2></center>
                </div>
                    <div id="tab4" class="tab_content">
                    <?php
                    $getmessage = $_POST["message"];
                    if($getmessage != null) {
                        echo"Thanks for posting the text!";
                    } ?>
<center><form method="post" name="form4"><input type="text" id="form4" name="message" placeholder="Type a text here"><br><input type="submit" value="Post text"></form></center>
                </div>
</div></center>
</center>

因此,当我在标签4中提交表单时,我会转到标签1,我手动必须转到标签4以查看我的回声显示的消息。我需要它自动转到提交表单的选项卡,但我不知道如何执行此操作。

2 个答案:

答案 0 :(得分:1)

在表单中添加另一个输入(隐藏)元素,例如active_tab,并在单击选项卡时使用活动选项卡填充它。从$_POST抓取该值并相应地设置默认标签。

第1步:添加输入元素

<input type="hidden" name="active_tab" />

第2步:更新输入值

$("ul.tabs li").click(function() {
    $('input[name="active_tab"]').val( $(this).index() );
    //your remaining code as is
    //...

步骤3:根据帖子值设置默认标签

$(document).ready(function() {
    //Default Action
    var tabNum = "<? echo !empty($_POST['active_tab']) ? $_POST['active_tab'] : 0; ?>";
    $(".tab_content").hide(); //Hide all content
    $("ul.tabs li").eq(tabNum).addClass("active").show(); //Activate the tab
    $(".tab_content").eq(tabNum).show(); //Show the tab content

答案 1 :(得分:0)

提供表单action="#tab4"(确保页面重新加载)。而且在您的JS脚本中,您必须添加即将从url中读取的代码:

var hash = (window.location.hash).substr(1) || null;
if(hash == "tab4")
    $(".tab_content:last").show();