0

我有一个小问题。我有一个包含三个菜单项和页面的菜单

首页 - 产品 - 产品,它还包含标签内容 1标签是“公司信息”,第二标签是“联系我们” 联系我们 - 这不是一个页面,而是链接到产品页面上的第二个标签

我想知道有没有可能的方法,当点击“联系我们”时,直接转到产品页面上的第二个标签

4

1 回答 1

1

我希望您在谈论某种 jQuery 选项卡,在这种情况下您可以执行类似的操作

HTML 链接

<a href="index.php#contact-us">Contact Us</a>

jQuery代码:

// get the hash from the location
var tab = window.location.hash;
// get the <a> element with the href that matches the location hash,
// and fire a click event on it
$('div.tabs ul.tabNavigation a[href=' + tab + ']').click();

注意:选项卡 id 应与哈希匹配

有关的:

于 2013-11-13T12:54:36.440 回答