Jquery 可折叠菜单(accordion menu) ie6 内容不可见 bug

最近用Jquery做可折叠菜单时,当加入"autoHeight:false,"属性时候遇到内容不可见问题。


$("#accordion").accordion({

  autoHeight:false,

  header:"h3"

});


最后在这个链接找到解决方法

http://stackoverflow.com/questions/725795/jquery-accordion-issues-with-ie-6


简单来说就是增加这个css

<style type = "text/css" >

      . ui - accordion - content { zoom : 1 ; }

</style>

你可能感兴趣的:(jquery,css)