我有这个 jquery 问题让我摸不着头脑。我想为每个列表项添加类。虽然列表项的宽度和高度确实增加了,但背景和颜色不会改变。为什么?谢谢你。
查询:
<script>
$(document).ready(function(){
$(".userarea_nav li").each(function(){
$(this).addClass("selected");
});
});
</script>
CSS:
.selected{
background: blue;
color: yellow;
height: 200px;
width: 100px;
}