首页 > 代码库 > 积累常用小方法(致自己)

积累常用小方法(致自己)

  1、星级评分:js超简单实现方法

var stars="★★★★★☆☆☆☆☆"

function selectStars(index) {
return stars.slice(5-index,10-index)
}
document.write(selectStars(0)+"<br>");
document.write(selectStars(1)+"<br>");
document.write(selectStars(2)+"<br>");
document.write(selectStars(3)+"<br>");
document.write(selectStars(4)+"<br>");
document.write(selectStars(5)+"<br>");

积累常用小方法(致自己)