gpt4 book ai didi

html - 使用 CSS 分配 Angular 色,而不是将其添加到 HTML 标签

转载 作者:行者123 更新时间:2023-12-04 08:38:50 25 4
gpt4 key购买 nike

是否可以为具有给定类的所有元素分配 Angular 色?我想把这个:

<div class="a" role="button">Text!</div>
<div class="a" role="button">More text!</div>
进入这个
<div class="a">Text!</div>
<div class="a">More text!</div>
<style>
.a {
role: button
}
</style>
我找到了在 css 中按 Angular 色过滤的解决方案,但没有找到使用 css 为元素分配 Angular 色的解决方案。

最佳答案

let buts = document.getElementsByClassName("a");

for(let i = 0; i < buts.length; i++){
buts[i].setAttribute("role", "button");
}
<div class="a">Text!</div>
<div class="a">More text!</div>

关于html - 使用 CSS 分配 Angular 色,而不是将其添加到 HTML 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64658992/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com