私は「星評価」システム、1 ~ 5 つ星に取り組んでいます。最初の星がホバリングされたら、その星の img src だけを変更したい。2つ目の星をホバリングしたとき、星1と星2の両方のimg srcを変更したいです。私はjqueryを使用していますが、機能していません...コードは次のとおりです。
<script>
$('#imgstar').hover(function () {
this.src = '/dev/images/rate_video_icon_yellow.png';
}, function () {
this.src = '/dev/images/rate_video_icon.png';
});
$('#imgstar2').hover(function () {
$("#imgstar, #imgstar2").src = '/dev/images/rate_video_icon_yellow.png';
}, function () {
$("#imgstar2").src = '/dev/images/rate_video_icon.png';
});
</script>