在剑道开关上贴标签

问题描述 投票:0回答:0

我正在使用 Kendo UI for Angular 的 Switch 组件。我创建了一个开关组件,但我注意到在文档中开关出现了默认标签“On”和“Off”default switch,但我的 Button 没有它们。所以我去看了文档,看到了“offLabel”和“onLabel”properties。我在我的代码中使用了它们,但我仍然没有得到标签。

component.html

<kendo-switch name="isActive" onLabel="Yes" offLabel="No" class="switch" [(ngModel)]="inspectionPlan.isActive"></kendo-switch>

我打开浏览器 DevTools 看到了这个

<span class="k-switch-label-on" aria-hidden="true"> Yes </span>
<span class="k-switch-label-off" aria-hidden="true"> Yes </span>

我认为标签不会出现,因为 aria-hidden 属性,但我不明白为什么它默认设置为隐藏。有谁知道如何删除它?

html css angular kendo-ui
© www.soinside.com 2019 - 2024. All rights reserved.