gpt4 book ai didi

jquery - 如何动态获取评分值

转载 作者:行者123 更新时间:2023-12-01 07:12:11 25 4
gpt4 key购买 nike

我在我的网页上使用了评级系统。我用过this jQuery plugin为了它。这是my fiddle 。我希望,评级数字(例如,位于我的 jiddle 右侧的 2 分 5 分或 2/5)也会在更改星级时更改,就像 imdb.com 一样。我怎样才能做到这一点?

jQuery:

$('.starbox').starbox({
average: 0.42,
autoUpdateAverage: true,
ghosting: true
});

最佳答案

你能检查一下这个吗?这里,右行在悬停时更新,当您离开星星时,它会放回与突出显示的星星相对应的初始值

$('.starbox').starbox({
average: 0.4,
autoUpdateAverage: true,
ghosting: true
});

$('.star').hover(function() {
var currentHoveredNote = parseInt($(this).attr('class').replace("star star-", "")) + 1;
$(this).closest(".block").find(".rating-value p").text(currentHoveredNote + '/5');
}, function() {
$(this).closest(".block").find(".rating-value p").text(parseFloat($(this).closest(".starbox").starbox("getOption", "average")) * 5 + '/5');
});

http://jsfiddle.net/565LK/12/

关于jquery - 如何动态获取评分值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25147897/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com