$('.stars').raty({ 'starHalf' : '/static/public/raty/lib/images/star-half.png' , // The name of the half star image. 'starOff' : '/static/public/raty/lib/images/star-off.png' , // Name of the star image off. 'starOn' : '/static/public/raty/lib/images/star-on.png', score: function() { return $(this).attr('data-score'); }, click: function(score, evt) { $.post("./index.php?crm/score",{id:this.id,score:score},function(data){ if(!data.status){ alert(data.message); } },"json") } });
主要參考瞭如下這篇文章php
項目地址:git