1

如果在主要元素之一或我正在处理的标题的嵌套列表之一li中找到链接,我将尝试突出显示父元素。li我觉得JS应该可以工作,但事实并非如此。任何指向正确方向的人都将不胜感激。

http://jsfiddle.net/fGGrf/

4

2 回答 2

0

这是你想要的?

    $('.submenu-link').hover (function (e) {
        $(this).parent().parent().children('a').css('backgroundColor', 'red');
    }, function (e) {
        $(this).parent().parent().children('a').css('backgroundColor', 'white');
    });

JSFiddle: : http://jsfiddle.net/fGGrf/5/

于 2012-05-31T15:17:03.737 回答
0

尝试这个:

$(document).ready(function(){
var dropdown = $('.dropdown');
var link= $('.submenu-link');

var cur = "www.domain.com/overview.php" // document.location.href ? document.location.href : document.location;
cur = cur.split('/' , -1);

    $('li a').each(function() {
        if ($(this).attr('href') == '/' + cur[1]) {
           $(this).parent().addClass('active');
        }
    })

});

http://jsfiddle.net/fGGrf/6/

于 2012-05-31T15:27:49.343 回答