0

我希望将以下条件添加到我现有的页面中。顺便说一句,目前一切似乎都很好,可以在这里看到:http ://www.ceramictilepro.com/Ceramic-Tile-And-Grout-Tips.php

1)当点击以上链接时,页面将有一个垂直菜单/子菜单,只有菜单可见(目前所有菜单/子菜单都已展开)。

2) 单击选定的菜单时,子菜单会展开并可见(当前有效,因此此处没有更改)

3) 单击子菜单时,将打开新页面。(这目前也有效)

4)这是我需要帮助的地方,我希望新页面关闭所有其他菜单,但单击所选子菜单的菜单除外。

注意:所选链接以红色背景突出显示,以便于导航。(这保持不变,这里不需要更改)

这是小提琴

这是当前工作的 jQuery

$.each([1, 2, 3, 4, 5], function (index) {
$(".toggle" + index).click(function () {
    $(".submenu" + index).slideToggle("fast", function () {
        // Animation complete.
    });
});
});


$(function () {
$('a').each(function () {
    if ($(this).prop('href') == window.location.href) {
        $(this).addClass('_current_highlight_button');
    }
});
});
$(function () {
var split = window.location.pathname.split('/');
var mnurl = split[split.length - 1];
mnurl = '#';
$(' a[href="' + mnurl + '"]').addClass("_current_highlight_button");
}); // mnurl='.php goes here';

谢谢你的任何建议:)

4

1 回答 1

0

更新

$(function () {
  var selected;
  $('.vmenu li a').click(function(e){
    $('.vmenu ul').not($(this).parent().next('ul')).css('display','none');
  });
  $('a').each(function () {
    if ($(this).prop('href') == window.location.href) {
        $(this).addClass('_current_highlight_button');
        selected = $(this).parent().parent();
    }
  });
  $('.vmenu ul').not(selected).css('display','none');
});
于 2013-10-15T01:32:12.080 回答