我的css样式使用伪选择器first-child
:
.point:first-child {
margin-left: 0;
}
有没有办法检查某个特定的DOM元素是否有应用了point
伪选择器的类:first-child
?
.getAttribute("class")
无法使用,只会返回"point"
答案 0 :(得分:0)
CSS Pseudo-classes将在元素本身中提供,但仅在css部分提供。 尝试在JQuery选择器
上使用此选择器".point:first"