Terms of settlement,There are three areas that need to be revised:
1
.on('mouseenter', '[data-value]', function () {
....
$(this).siblings('.rating-caption').text(caption_list[index]);
}
2
.on('mouseleave', '[data-value]', function () {
....
if (val >= min && val <= max) {
...
$(this).siblings('.rating-caption').text(caption_list[index]);
} else {
_clearValue(self.closest('.rating-input'));
$(this).siblings('.rating-caption').text('');
}
}
3
.each(function () {
....
$(this).children(".rating-caption").text(caption_list[index]);
}