【发布时间】:2019-01-25 22:49:10
【问题描述】:
我需要在手风琴内插入一堆蓝色超链接。所以当我们点击标题时,出现的展开区域会包含几行调用某个函数的代码。
我尝试按照 Angular Material 网站上的示例进行操作: https://stackblitz.com/angular/ybovddobxlj?file=app%2Fexpansion-overview-example.html
我已将expansion-overview-example.html 修改为以下内容:
<mat-accordion>
<mat-expansion-panel>
<mat-expansion-panel-header>
<mat-panel-title>
ALL FILES
</mat-panel-title>
</mat-expansion-panel-header>
<div> <!-- To put them on separate lines -->
<mat-form-field>
<label title="File 1" onclick="openFile1()"></label> <!-- THIS LINE BREAKS THE PAGE. HELP? -->
</mat-form-field>
</div>
<div> <!-- To put them on separate lines -->
<mat-form-field>
<label title="File 2" onclick="openFile2()"></label> <!-- THIS LINE BREAKS THE PAGE. HELP? -->
</mat-form-field>
</div>
</mat-expansion-panel>
</mat-accordion>
【问题讨论】:
标签: html hyperlink angular-material material-design accordion