You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]);
}
The text was updated successfully, but these errors were encountered:
jiajie1212
changed the title
When a page has two controls, rating-caption has the same value
When there are multiple controls on a page, rating-caption has the same value
Feb 15, 2019
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]);
}
The text was updated successfully, but these errors were encountered: