首页 > 语言 > JavaScript > 正文

jQuery基于图层模仿五星星评价功能的方法

2024-05-06 16:19:41
字体:
来源:转载
供稿:网友

这篇文章主要介绍了jQuery基于图层模仿五星星评价功能的方法,使用jQuery动态修改元素背景色的方法实现星评功能,需要的朋友可以参考下

本文实例讲述了jQuery基于图层模仿五星星评价功能的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  6. <title>无标题文档</title> 
  7. <script src="jquery-1.6.2.min.js" type="text/javascript"></script> 
  8. <script> 
  9. $(function(){  
  10. $(".star li").mouseenter(function(){ 
  11. $(".star li").css("background","#f60"); 
  12. $(this).css("background","#f60"); 
  13. $(this).nextAll().css("background","#ccc"); 
  14. }) 
  15. }); 
  16. </script> 
  17. <style type="text/css"
  18. * {<br /> 
  19. padding:0;margin:0; 
  20. list-style:none; float:left; 
  21. .star li { 
  22. float: left; 
  23. height: 20px; 
  24. width: 20px; 
  25. background-color: #CCC; 
  26. margin-right: 4px; 
  27. </style> 
  28. </head> 
  29. <body> 
  30. <div>选几星:</div> 
  31. <ul class="star"
  32. <li></li> 
  33. <li></li> 
  34. <li></li> 
  35. <li></li> 
  36. <li></li> 
  37. </ul> 
  38. </body> 
  39. </html> 

希望本文所述对大家的jQuery程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选