0

我正在建立一个手风琴菜单:

$(document).ready(function(){

  /* Cambiare l'effetto da utilizzare */
  $.easing.def = "easeOutBounce";

  /* Associare una funzione all'evento click sul link */
  $('li.title a').click(function(e){

    /* Finding the drop down list that corresponds to the current section: */
    var subMenu = $(this).parent().next();

    /* Trovare il sotto menu che corrisponde alla voce cliccata */
    $('.sub-menu').not(subMenu).slideUp('slow');
    subMenu.stop(false,true).slideToggle('slow');

    /* Prevenire l'evento predefinito (che sarebbe di seguire il collegamento) */
    e.preventDefault();
  })

});

有人知道如何将滚动条放入手风琴菜单吗?谢谢!

4

1 回答 1

2

这里的工作示例。

编码:

您只需要一个普通的手风琴并在此示例中设置溢出属性和高度:

p{
    height:80px;
    overflow-y:scroll;
}

​</p>

于 2012-12-13T15:55:31.287 回答