我使用的是raty來執行評分功能,我在彈出窗口中顯示它。Bootstrap popover複製代碼
的問題是,我第一次點擊鏈接,它創建正確的星星,但是,當我點擊第二次,星星被複制,因此它彈出式菜單10顆星,而不是5
$('#member1').popover({
html: true,
placement: 'bottom',
content: function() {
return $($(this).data('contentwrapper')).html();
}
}).click(function() {
$('.star').each(function(el) {
$(this).raty({
starOff : 'http://wbotelhos.com/raty/lib/images/star-off.png',
starOn : 'http://wbotelhos.com/raty/lib/images/star-on.png',
start: $(this).attr('data-rating')
});
});
});
我複製此fiddle中的錯誤。
任何人都可以讓我知道如何解決這個問題,因此,只顯示5星?
謝謝!