gpt4 book ai didi

javascript - 我们可以在 <style> 标签上使用 class 吗?

转载 作者:太空宇宙 更新时间:2023-11-04 05:42:34 25 4
gpt4 key购买 nike

这件事是为了 js 目的 我想要一个特定的 <style>要从事件的文档中删除的标记。因此,据我所知,我为它添加了一个类并在我的事件中删除了它,例如:

<style class="custome_for_remove">
.selected_par>td,
.footer-tr>td {
position: relative;
display: table-cell!important
}.....
</style>


<script>
function customeRemove() {
$('.custome_for_remove').remove()
}
</script>

我担心的是这个 HTML 标准,这是正确的方法吗?我找不到与此相关的任何问题或答案。

最佳答案

是的!这完全有效,而且它似乎也是有效的语法。这是一个小演示。根据https://validator.w3.org/在你的样式标签中有一个类被认为是有效的 html(如果你愿意,你也可以使用一个 id)。

$("#test").click(() => {
$(".customClass").remove();
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<style class="customClass">
p {
color: red;
}
</style>

<p>
Test
</p>
<button id="test">
remove
</button>

关于javascript - 我们可以在 &lt;style&gt; 标签上使用 class 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59045261/

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