最近用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>
$("#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>