Jquery Ui 选项卡 url 与页面基础的问题

发布于 2024-10-16 20:59:02 字数 569 浏览 5 评论 0原文

我的 jqueryui 选项卡有问题。

我有这个代码:

//The jQuery Tabs
$( "#tabs" ).tabs();

//Code to open the correct tab if i write the hash on the url. It works fine
var hash = window.location.hash;
var index = $("#tabs a").index($('#link-'+hash.replace('#','')));
if(index>=0) $("#tabs a").eq(index).click();

如果我不放入页面base href=...,它就可以正常工作,我可以用鼠标右键在新页面中打开选项卡,然后页面会打开选择了正确的选项卡。

如果我将我的页面 base href=http://$_SERVER['HTTP_HOST']/ 当我用鼠标右键在新窗口中打开选项卡时,打开的页面不正确。只获取页面的基础部分,丢失大部分 url。

请帮忙。对不起我的英语

I have a problem with jqueryui tabs.

I have this code :

//The jQuery Tabs
$( "#tabs" ).tabs();

//Code to open the correct tab if i write the hash on the url. It works fine
var hash = window.location.hash;
var index = $("#tabs a").index($('#link-'+hash.replace('#','')));
if(index>=0) $("#tabs a").eq(index).click();

It works fine if I don't put in the page base href=... I can open the tab in new page with right button of the mouse and the page opens with the correct tab selected.

If I put in my page base href=http://$_SERVER['HTTP_HOST']/ When I open the tab in new window with the right button of the mouse, the page opened is incorrect. Only get the base of page, lose the most of url.

Help please. Sorry for my english

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

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

发布评论

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

评论(1

冰雪梦之恋 2024-10-23 20:59:02

我不明白

如果我放入我的页面 /" />

位,

但最后两行可能已经减少到我认为的一行:

$('#link-'+hash.replace('#','')).click();

I don't understand the

If I put in my page /" />

bit,

but the two last lines could already be reduced to one i think:

$('#link-'+hash.replace('#','')).click();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文