ngx-bootstrap:从关闭手风琴项目的标题中排除元素

时间:2018-05-16 11:01:31

标签: ngx-bootstrap ng2-bootstrap

有没有办法排除accordion-heading自定义HTML中的某个元素,无法打开和关闭手风琴?

例如,

<accordion>
    <accordion-group>
        <div accordion-heading>
            <span>This should close the accordion element (the default behavior)</span>
            <span>This should not close it</span>
        </div>
    </accordion-group>
</accordion>

1 个答案:

答案 0 :(得分:2)

我用

修复了它

<span (click)="$event.stopPropagation()">This should not close it</span>

希望有一天会帮助别人!