通过选定的 jQuery 选项卡设置 URL

发布于 2024-08-06 07:26:01 字数 744 浏览 1 评论 0原文

进一步这个问题 - 并使用相同的 getUrlParam.js 插件。

$(document).ready(function(){
var param = $(document).getUrlParam('tab');
$("#tabs").tabs();
$("#tabs").tabs('select', param);
});

使用此代码,我可以控制在给定页面上加载哪个选项卡,例如 blogs/?tab=tv 加载 /blogs/ 页面上的选项卡 #tv

但是有没有办法可以通过单击选项卡本身来设置 URL?

<ul id="mediatabs" class="tab-buttons">
<li class="TV"><a href="#TV">TV</a></li>
<li class="radio"><a href="#radio">Radio</a></li>
</ul>

即单击电视选项卡会加载 /?tab=tv?

我想这是 Tabs 3 中缺少书签功能的解决方法。

Further to this question - and using the same getUrlParam.js plugin.

$(document).ready(function(){
var param = $(document).getUrlParam('tab');
$("#tabs").tabs();
$("#tabs").tabs('select', param);
});

With this code I am able to control which tab loads on a given page e.g. blogs/?tab=tv loads the tab #tv on the /blogs/ page.

However is there a way I can set the URL by clicking on the tabs themselves?

<ul id="mediatabs" class="tab-buttons">
<li class="TV"><a href="#TV">TV</a></li>
<li class="radio"><a href="#radio">Radio</a></li>
</ul>

i.e. clicking on the TV tab loads /?tab=tv?

I guess this is a workaround for the missing bookmarking functionality in Tabs 3.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

云裳 2024-08-13 07:26:01

好吧,您想要更改查询字符串参数,而不是网址的哈希值 (http://www.example.com/page.html#this-is-a-hash)。一种方法是使用 select 事件,每当单击选项卡时就会触发该事件。像这样的东西:

$('#tabs').bind('tabsshow', function(event, ui) {
    // TODO: compute the desired url and set window.location.href
});

Well, you're wanting to change a querystring parameter and not the hash of the url (http://www.example.com/page.html#this-is-a-hash). One approach is to use the select event which is triggered whenever a tab is clicked. Something like:

$('#tabs').bind('tabsshow', function(event, ui) {
    // TODO: compute the desired url and set window.location.href
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文