如何检索在 jquery 星评级中单击的星的值

how to retrieve the value of the star clicked in a jquery star rating

我正在使用 jquery 星级 plugin.the link [此处] (http://irfandurmus.com/projects/jquery-star-rating-plugin/)。 here's the image

我有一个 table,其中一列有一个星级来评价一个项目。我正在循环星级评分以对所有 rows.I 中存在的项目进行评分,需要获得每行中点击的星级值。但是我无法获得每行中单击的星号的值。请帮我解决这个问题。

你可以这样使用:

$('td .rating-div').each(function(){
   console.log($('.stars').find('a.fullStar.star').length);
});

你可以用 Javascript:

jQuery('.star').on("click", function(){
  var rating = jQuery(this).attr('title');
});

另一种方式

$('.rating-div').each( function() { 
    console.log( $(this).find('> .stars > .fullStar:last').attr("title")  ) 
} );