Jquery Ui 选项卡 url 与页面基础的问题
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不明白
位,
但最后两行可能已经减少到我认为的一行:
I don't understand the
bit,
but the two last lines could already be reduced to one i think: