下記サイトを参考にrety.jsを利用して星の数を管理しているのですが
星を一度クリックしてしまうと星をない状態(score 0)に戻せません。
参考サイト:http://itref.fc2web.com/javascript/jquery/raty.html
何か方法はありますでしょうか?
ソースコードは下記になります。
html
1<html> 2 <head> 3 <script src="/js/jquery.min.js"></script> 4 <script src="/js/jquery.raty.js"></script> 5 <script> 6 $(function(){ 7 $('#star1').raty(); 8 }); 9 </script> 10 </head> 11 <body> 12 <p id="star1"></p> 13 </body> 14</html>
あなたの回答
tips
プレビュー