gpt4 book ai didi

php - 打开带有特定选项卡的页面

转载 作者:行者123 更新时间:2023-11-28 10:06:26 25 4
gpt4 key购买 nike

我已经成功地实现了我网站的一部分,用户可以在其中完成订单,但是要在用户单击提交后完成该过程,我希望他们返回到包含订单的页面,以便他们可以看到他们的订单命令。我知道很简单,除了我的订单部分是 jquery 选项卡的一部分,并且是第三个选项卡,所以当您转到该页面时该选项卡不是显示的,我的问题是,如何让用户重定向到页面上的订单选项卡处于打开状态,而不是现金选项卡。

这是该选项卡的代码

<div id="tabContent">
<ul class="tabs">
<!--<li><a id="all" href="#all" class="all">All</a></li>-->
<li><a href="#cashout" class="all">Cashout</a></li>
<li><a href="#upgrade" class="survey">Upgrade</a></li>
<li><a href="#orders" class="videos">Orders</a></li>


</ul>


<div class="tab_container">
<div id="cashout" class="tab_content">
CONTENT FOR CASHOUT
</div>
<div id="upgrade" class="tab_content">
<div id="upgradeLeft">
CONTENT FOR UPGRADE


</div>
<div id="orders" class="tab_content">

CONTENT FOR ORDERS THIS TAB TO BE OPENED
</div>

</div><!--- end tab_container--->
</div><!---end tab content--->

选项卡的脚本代码

<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>

转到订单选项卡打开的页面的链接

include_once 'market.php';

感谢您的帮助

最佳答案

我认为你应该写一个函数 selectTab('#tab_id')当您将用户重定向到新选项卡时,只需调用 javascript selectTab

function selectTab(id)
{
$('#cashout').removeClass('active');
$('#' + id).addClass('active');
}

例如:当您返回一个指示所选选项卡的变量时

selectTab('#<?php echo $this->selectedTab?>');//or $_SESSION['SELECTED_TAB']

关于php - 打开带有特定选项卡的页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8285440/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com