How can you adjust the height of a jQuery UI accordion?

后端 未结 11 2131
礼貌的吻别
礼貌的吻别 2021-01-31 15:32

In my UI I have an accordion setup like this:

Section 1

...content...
//
11条回答
  •  眼角桃花
    2021-01-31 16:01

    Setting the DIV's height will do the trick.

    $(document).ready(function() {
    
        $("#accordion").show().accordion({
            autoHeight: false
        });
    
        $("#accordion div").css({ 'height': 'auto' });
    });      
    

提交回复
热议问题