本文主要和大家分享JS 實現點亮星星評分功能,希望能幫助大家。
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>点亮星星评分</title></head><body onload="test()"><table id ="czy"> <tr> <td>★</td><td>★</td><td>★</td><td>★</td><td>★</td> </tr></table><input type="button" id="ok" value="打分"><script> tds=document.getElementsByTagName("td"); for(var i=0;i<tds.length;i++){ tds[i].onmouseover=test; } var index; function test(){ for(var i=0;i<tds.length;i++){ if(tds[i]==this) { index=i; } } for(var i=0;i<=index;i++) { tds[i].style.color = "red"; } for(var i=index+1;i<tds.length;i++){ tds[i].style.color="black"; } } document.getElementById("ok").onclick=function(){ alert("评分:"+(index+1)+"分"); }</script></body></html>
相關推薦:
js點亮星星評分並取得參數的js程式碼_javascript技巧
以上是JS 實現點亮星星評分功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!