摘要:
&选择效果li {
width: 100px;
height: 50px;
border: 1px salmon solid;
margin: 50px 30px 0px 0px;
padding: 0;
text-align: center;
line-height: 50px;
float: left;
list-style: none;
}
.active {
background: salmon;
}
- 1
- 1
- 1
- 1
$(function() {
$('li').click(function(){
if($(this).hasClass('active')){
$(this).removeClass('active')
}else{
$(this).addClass('active').siblings('li').removeClass('active')
}
})
})
批改老师:天蓬老师批改时间:2019-08-07 13:27:47
老师总结:代码并不完整, 应该是没有写完, 下回写完再提交