分类组件

$(function () {
$("#box").accordion({
width: 450,
height: 200,
// fit: true, //自适应全屏
// border:true, //外边框设置
// animate: true, //是否显示动画效果
// multiple:true, //多个面板同时显示
// selected:1 //默认选择面板
//onSelect: function (title, index) { }, //选择响应函数
//onUnselect: function (title, index) { }, //

});
$($("#box").accordion('add', {
title: '新面板',
content:'新内容',
}));
});

 

posted @ 2016-08-17 21:43  许轩霖  阅读(216)  评论(0编辑  收藏  举报