这只是一个小问题,但我已经看过其他帖子,但没有一个解决方案工作(至少对我来说)。我想改变出现在悬停标题。我已经尝试使用pointer-events: none;,但它停止了onDelete函数<ion-icon name="trash-outline" (click)="onDelete(message)" class="del" ></ion-icon>
pointer-events: none;
<ion-icon name="trash-outline" (click)="onDelete(message)" class="del" ></ion-icon>
dddzy1tm1#
As per the Ionic Forum post执行以下操作:
<span title="whatever" (click)="onDelete(message)" > <ion-icon name="trash-outline" class="del"></ion-icon> </span>
在你的CSS里
.del { pointer-events:none }
And here is the solution as a stackblitz.
cnwbcb6i2#
我不希望任何ion-icon svg title出现在我的应用程序中,所以我将其放在index.html标签中:
ion-icon svg title
ion-icon { pointer-events: none; }
2条答案
按热度按时间dddzy1tm1#
As per the Ionic Forum post执行以下操作:
在你的CSS里
And here is the solution as a stackblitz.
cnwbcb6i2#
我不希望任何
ion-icon svg title
出现在我的应用程序中,所以我将其放在index.html标签中: