yii2 常用组件 -- 折叠主键(Collapse)

来源:互联网 发布:java99乘法表数组编程 编辑:程序博客网 时间:2024/06/05 18:20

简介

yii2 Collapse折叠组件的应用就很常见了,比如yii2权威指南的左侧菜单就是通过Collapse组件实现的,不信可以去看看...那么言归正传,Collapse的实例演示如下

实例

<?phpuse yii\bootstrap\Collapse;echo Collapse::widget([    'items' => [        // equivalent to the above        [            'label' => '折叠1',            'content' => '<a href="aaa">--内容1</a>',            // open its content by default            'contentOptions' => ['class' => 'in']        ],        // another group item        [            'label' => '折叠2',            'content' => '<a href="aaa">--内容2</a>',        ],        // if you want to swap out .panel-body with .list-group, you may use the following        [            'label' => '折叠3',            'content' => [                '<a href="aaa">--内容3-1</a>',                '<a href="aaa">--内容3-2</a>'            ],            'footer' => 'Footer' // the footer label in list-group        ],    ]]);?>

演示

blob.png

原创粉丝点击