jquery手风琴菜单 - 链接问题

时间:2011-01-15 15:20:11

标签: jquery html menu href

我正在使用这个http://www.i-marco.nl/weblog/jquery-accordion-menu/手风琴菜单。

问题是,主菜单链接仅用于扩展子菜单,但不是 作为链接本身。我希望主菜单链接转到链接并且(我通过php脚本设置扩展类)展开子菜单。

以下是代码:

html(示例):

<span class="acc_menu"> 
<ul class="menu"> 
<li class="expand"> 
<a href="/a_page.html">A page</a> 
<ul class="menu nestedmenu acitem"> 
<li><a href="/other_page.html">Other page</a></li> 
<li><a href="/other_page2.html">Other page 2</a></li> 
<li><a href="/other_page3.html">Other page 3</a></li> 
</ul> 
</li>
</ul>

jquery:

jQuery.fn.initMenu = function() {
return this.each(function(){
    var theMenu = $(this).get(0);
    $('.acitem', this).hide();
    $('li.expand > .acitem', this).show();
    $('li.expand > .acitem', this).prev().addClass('active');
    $('li a', this).click(
        function(e) {
            e.stopImmediatePropagation();
            var theElement = $(this).next();
            var parent = this.parentNode.parentNode;
            if($(parent).hasClass('noaccordion')) {
                if(theElement[0] === undefined) {
                    window.location.href = this.href;
                }
                $(theElement).slideToggle('normal', function() {
                    if ($(this).is(':visible')) {
                        $(this).prev().addClass('active');
                    }
                    else {
                        $(this).prev().removeClass('active');
                    }    
                });
                return false;
            }
            else {
                if(theElement.hasClass('acitem') && theElement.is(':visible')) {
                    if($(parent).hasClass('collapsible')) {
                        $('.acitem:visible', parent).first().slideUp('normal', 
                        function() {
                            $(this).prev().removeClass('active');
                        }
                    );
                    return false;  
                }
                return false;
            }
            if(theElement.hasClass('acitem') && !theElement.is(':visible')) {         
                $('.acitem:visible', parent).first().slideUp('normal', function() {
                    $(this).prev().removeClass('active');
                });
                theElement.slideDown('normal', function() {
                    $(this).prev().addClass('active');
                });
                return false;
            }
        }
    }
);
});
};

$(document).ready(function() {
    $('.menu').initMenu();
}); // enter code here

1 个答案:

答案 0 :(得分:0)

只需将target="_blank"添加到您的父链接,然后移除return false;

即可