Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
它利用 jQuery 来显示和隐藏不同的“选项卡”,但他们想链接到选项卡中的不同页面,我无法让它工作。
我尝试寻找解决方案,但也许我没有询问/搜索正确的术语或其他内容。
任何帮助表示赞赏。提前致谢。
您的元素与之前的nav元素重叠。div尝试删除postion:relative;元素。
nav
div
postion:relative;
尝试使用下面的 jQuery 代码:
$("#tabs li a").click(function(){ window.open($(this).attr('href'),"_self"); });
$(this).click();并在您的 jQuery 代码中悬停时删除。
$(this).click();