将 PHP GET 传递给 jQuery 函数

发布于 2024-10-08 05:37:35 字数 1132 浏览 1 评论 0原文

我正在使用一些 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

东风软 2024-10-15 05:37:35

像这样的东西怎么样(假设 'tab' GET 参数是一个索引):

$("ul.tabs li:nth-child(<?= $_GET['tab'] ?>)").addClass("active").show(); //Activate first tab
$(".tab_content:nth-child(<?= $_GET['tab'] ?>)").show(); //Show first tab content

What about something like this (assuming the 'tab' GET parameter is an index):

$("ul.tabs li:nth-child(<?= $_GET['tab'] ?>)").addClass("active").show(); //Activate first tab
$(".tab_content:nth-child(<?= $_GET['tab'] ?>)").show(); //Show first tab content
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文