模擬實現的星星評分效果詳解

antzone發表於2017-04-06

本章節分享一段程式碼例項,它實現了類似於星級評分的效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
*{
  margin:0px;
  padding:0px;
  list-style:none;
 }
.star li{
  float:left;
  height:20px;
  width:20px;
  background-color:blue;
  margin-right:4px;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script>
$(function(){ 
  $(".star li").mouseenter(function(){
    $(".star li").css("background","#f60");
    $(this).css("background","#f60");
    $(this).nextAll().css("background","#ccc");
  })
});
</script>
</head>
<body>
<div>選中星星:</div>
<ul class="star">
  <li></li>
  <li></li>
  <li></li>
  <li></li>
  <li></li>
</ul>
</body>
</html>

上面的程式碼實現了我們的要求,下面介紹一下它的實現過程。

一.程式碼註釋:

(1).$(function(){ }),當文件內容完全載入完畢再去執行函式中的程式碼。

(2).$(".star li").mouseenter(function(){}),為li元素註冊mouseenter事件處理函式。

(3).$(".star li").css("background","#f60"),設定所有li元素的背景顏色。

(4).$(this).css("background","#f60"),將當前li元素的背景顏色設定為#f60。

(5).$(this).nextAll().css("background","#ccc"),將當前元素後面的所有的li元素背景色設定為#ccc。

二.相關閱讀:

(1).mouseenter事件可以參閱jQuery mouseenter事件一章節。

(2).css()方法可以參閱jQuery css()一章節。

(3).nextAll()方法可以參閱jQuery nextAll()一章節。

相關文章