gpt4 book ai didi

javascript - 如何忽略 jQuery 移动样式?

转载 作者:行者123 更新时间:2023-11-28 16:26:40 25 4
gpt4 key购买 nike

我有一个动态创建的标签元素。当我创建它时,我给它一个值为“无”的数据滚动属性,并试图用我自己的具有“!重要”值的类覆盖它。不幸的是, margin 仍在执行中。

这是控制台的图像:https://gyazo.com/26566879cb903304a24b3b313a777c75

CSS:

#label {
margin: 0px !important;
}

JS:

$("<label />") //create new label
.attr("id", "label" + listCount) //set ID
.attr("for", "input" + listCount) //set For
.attr("class", "inline")
.attr("data-roll", "none")
.html(input) //set contents
.appendTo("#input" + listCount + "container");//add to checkbox container

最佳答案

尝试:

label.inline {
margin: 0px !important;
}

因为您的 id 实际上是 #labelSOMEnUMBER,所以您不能使用您的 id 选择它。

关于javascript - 如何忽略 jQuery 移动样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43666848/

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