将 PHP GET 传递给 jQuery 函数
我正在使用一些 jquery 代码,它使用 li 项目来选择显示哪个选项卡。 “选项卡”只是 div。这是 jQuery 代码:
$(document).ready(function() {
//When page loads...
$(".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 href attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active ID content
return false;
});
});
其中显示 li:first 并向其添加活动类,我试图弄清楚如何根据 PHP GET 结果更改首先显示哪个“选项卡”: ?php $tab = $_GET['tab']; ?>
“tab”将是数字 1、2、3 或 4。选项卡 1、选项卡 2 等...那么我如何使用这个 PHP 变量和 jQuery 来选择要激活的选项卡?
谢谢
I'm using a bit of jquery code which uses li items to select which tab is displayed. the "tabs" are just divs. This is the jQuery code:
$(document).ready(function() {
//When page loads...
$(".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 href attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active ID content
return false;
});
});
Where it says li:first and adds the active class to it, i'm trying to figure out how i can change which "tab" gets displayed first depending on a PHP GET result: <?php $tab = $_GET['tab']; ?>
"tab" will be a number 1,2,3 or 4. ie. tab 1, tab 2, etc...so how can i use this PHP variable with jQuery to choose which tab to make Active?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西怎么样(假设 'tab' GET 参数是一个索引):
What about something like this (assuming the 'tab' GET parameter is an index):