我在页面上动态创建多个 jquery ui 手风琴。
页面的渲染需要很长时间,并且卡在手风琴的创作上。
有没有办法在同一时刻创建多个手风琴?
谢谢
编辑
想想我的屏幕上有几个 h3 和 div,在加载页面时,我调用了这个函数:
function createAccordion(accordion) {
if (typeof accordion == 'undefined')
accordion = '.accordion';
$(accordion).accordion({
active: false,
collapsible: true,
animate:false,
heightStyle: 'content'
});
}