我遇到了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();
如果我没有放入页面基础href = ... 它可以正常工作我可以用鼠标右键打开新页面中的选项卡,打开页面并显示正确的选项卡地选择。
如果我放入我的页面 base href = http:// $ _ SERVER ['HTTP_HOST'] / 当我使用鼠标右键打开新窗口中的选项卡时,页面打开是不正确的。只获取页面的基础,丢失大部分网址。
请帮助。对不起我的英文
答案 0 :(得分:1)
我不明白
如果我放入我的页面/“/>
位,
但最后两行可能已经减少到一个我认为:
$('#link-'+hash.replace('#','')).click();