jquery模仿五星星评分功能入门例子

发布时间:2019-08-02编辑:脚本学堂
一段jquery模仿五星星评分功能的代码,jquery基于图层模仿五星星评价功能的方法,jquery动态修改元素背景色实现星评功能,代码简练,功能齐全,不错。

jquery基于图层模仿五星星评价功能的代码

专题jquery星星评分

例子:
 

复制代码 代码示例:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery基于图层模仿五星星评价功能_www.jb200.com</title>
<script src="jquery-1.6.2.min.js" type="text/javascript"></script>
<script>
$(function(){
$(".star li").mouseenter(function(){
$(".star li").css("background","#f60");
$(this).css("background","#f60");
$(this).nextAll().css("background","#ccc");
})
});
</script>
<style type="text/css">
* {<br />
padding:0;margin:0;
list-style:none; float:left;
}
.star li {
float: left;
height: 20px;
width: 20px;
background-color: #CCC;
margin-right: 4px;
}
</style>
</head>
<body>
<div>选几星:</div>
<ul class="star">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</body>
</html>