大家好,我有以下脚本:
$(document).ready(function () {
$('.shoppers-images ul li').click(function () {
$('.shoppers-images ul li').removeClass('selected');
$(this).addClass('selected');
});
});
这如我所愿......但我确信css是错误的,因为它覆盖了一些声明的值......并且.selected类永远不会显示
#foot-transport{
background: url(../img/css/register-runner.png) no-repeat;
background-position: center center;
margin-right: 20px;
}
#bicycle-transport{
background: url(../img/css/register-bycicle.png) no-repeat;
background-position: center center;
}
#van-transport{
background: url(../img/css/register-van.png) no-repeat;
background-position: center center;
margin-left: 20px;
}
.selected{
background: url(../img/css/checked-image.png) no-repeat;
background-position: center center;
}
这是我的html:
<div class="span7 shoppers-images">
<ul>
<a href="#"><li id="foot-transport"><span>Individual</span></li></a>
<a href="#"><li id="bicycle-transport"><span>Pro Driver/Courier</span></li></a>
<a href="#"><li id="van-transport"><span>A Delivery </span></li></a>
</ul>
</div>
问题是:如何在 css 中声明我的“选定”类以使其更强大?