html代碼:
<div class="price" title="點(diǎn)擊按價(jià)格從高到低排序">按價(jià)格排序<span class="price_asc"></span></div>
jquery代碼:
$(".price").click(function(){
$(this).children("span").toggleClass("price_desc");
})
$(".price").toggle(function(){$(this).attr("title","點(diǎn)擊按價(jià)格從低到高排序");},function(){$(this).attr("title","點(diǎn)擊按價(jià)格從高到低排序");})
CSS代碼:
.price{cursor:pointer;position:relative;width:73px;}
.price span{position:absolute;top:7px;right:0;margin-left:5px;width:8px;height:4px;background-image:url(../images/price.png); background-repeat:no-repeat;}
.price .price_asc{background-position:0 0;}
.price .price_desc{background-position:0 -6px;}
更多信息請查看IT技術(shù)專欄