我正在动态生成样式列表。第一个添加类的jquery函数是什么
<ul>
<li class="add-class-here"></li>
<li></li>
</ul>
只需使用:first
伪类和addClass()
方法的组合:
$('ul li:first').addClass('someClass');
您可以使用 jQuery 的:first
选择器:
$('#list_id li:first').addClass('classname');
不使用 jquery
与 - CSS 全球
li:first-child{conduct01}
li{conduct02}
li:last-child {conduct03}
你可以这样做:
$('ul li:first').addClass('some_class');
如果是静态的,最好在 CSS3 中使用first-child
orfirst-of-type
选择器来指定。
为什么你需要 jQuery 呢?
您可以使用 CSS first-child 伪元素来做到这一点。