微酒店中默认五星评价,点击后最多只能选四颗星,小白求教
- #page2 .send ul li span{display: inline-block; text-align: center; height: 100%; width: 2em; background: url('亮星星地址');background-size:100% 100%; color: transparent;}
- #page2 .send ul li span.selected{background: url('灰星星地址');background-size:100% 100%;}
- $(function(){<br> $("#page2 .send ul li span").hover(function(){ var i = $(this).index()+1; $(this).addClass("selected"); $(this).nextAll("span").addClass("selected"); $(this).prevAll("span").removeClass("selected"); }) })</li> </ul> <pre><code> <ul> <li>早餐:</li> <li class="breaker"> <span>1</span> <span>2</span> <span>3</span> <span>4</span> <span>5</span> </li> </ul> </code></pre> <p>