写个最简单的原生js的星级评分
Html代码
加载中
Css代码
*{margin: 0;padding: 0;}
.pingfen{ width: 135px; margin:10px auto; height:20px; position: relative;}
.pingfen ul{height:20px; margin-bottom: 10px;}
.pingfen li{ width: 20px; float: left; height: 20px; cursor: pointer; background: url(star.png) no-repeat 0 0; list-style: none;}
.pingfen .active{background: url(star.png) no-repeat 0 -28px;}
.pingfen p{ position: absolute; top:24px; left: 0px; width: 134px; height: 28px;
background: #fff; line-height: 28px; text-align: center; border:1px solid #333;
display:none;} JS代码:
var aData =["很差","较差","一般","推荐","力推"];
window.οnlοad=function(){
var oDiv = document.getElementById("rank");
var aLi = oDiv.getElementsByTagName("li");
var oP = oDiv.getElementsByTagName("p")[0];
var i =0;
for(i=0;i
aLi[i].index = i;
aLi[i].onmouseover = function(){
oP.style.display = "block";
oP.innerHTML=aData[this.index];
for(i=0; i<=this.index;i++){
aLi[i].className="active";
}
};
aLi[i].onmouseout = function(){
oP.style.display = "";
for(i=0; i
aLi[i].className="";
}
};
aLi[i].οnclick=function(){
alert(this.index +1);
};
}
};
运行截图:
由最代码官方编辑于2016-5-31 9:32:34