写个最简单的原生js的星级评分:

  1. <div id="rank" class="pingfen">
  2. <ul>
  3. <li></li>
  4. <li></li>
  5. <li></li>
  6. <li></li>
  7. <li></li>
  8. </ul>
  9. <p>加载中</p>
  10. </div>
  1. <style type="text/css">
  2. ;}
  3. .pingfen{ width: 135px; margin:10px auto; height:20px; position: relative;}
  4. .pingfen ul{height:20px; margin-bottom: 10px;}
  5. ; list-style: none;}
  6. -28px;}
  7. ; display:none;}
  8. </style>
  1. <script>
  2. var aData =["很差","较差","一般","推荐","力推"];
  3. window.onload=function(){
  4. var oDiv = document.getElementById("rank");
  5. var aLi = oDiv.getElementsByTagName("li");
  6. var oP = oDiv.getElementsByTagName("p")[0];
  7. var i =0;
  8. for(i=0;i<aLi.length;i++){
  9. aLi[i].index = i;
  10. aLi[i].onmouseover = function(){
  11. oP.style.display = "block";
  12. oP.innerHTML=aData[this.index];
  13. for(i=0; i<=this.index;i++){
  14. aLi[i].className="active";
  15. }
  16. };
  17. aLi[i].onmouseout = function(){
  18. oP.style.display = "";
  19. for(i=0; i<aLi.length; i++){
  20. aLi[i].className="";
  21. }
  22. };
  23. aLi[i].onclick=function(){
  24. alert(this.index +1);
  25. };
  26. }
  27. };
  28. </script>

ok超级简单不信你试试。

05-11 22:00