首页>>Jquery文字>>星号等级选择器,默认等级(2015-12-15)

星号等级选择器,默认等级

星号等级选择器,默认等级
赞赏支持
立刻微信赞赏支持 关闭

JavaScript Code
  1. <script>  
  2.   
  3. /* This is out callback function for when a rating is submitted 
  4.  */  
  5. function rateAlert(id, rating)  
  6. {  
  7.     alert( 'Rating for '+id+' is '+rating+' stars!' );  
  8. }  
  9.   
  10. /* Here we initialize raterater on our rating boxes 
  11.  */  
  12. $(function() {  
  13.     $( '.ratebox' ).raterater( {   
  14.         submitFunction: 'rateAlert',   
  15.         allowChange: true,  
  16.         starWidth: 100,  
  17.         spaceWidth: 10,  
  18.         numStars: 5  
  19.     } );  
  20. });  
  21.   
  22. </script>  

 


原文地址:http://www.freejs.net/article_jquerywenzi_533.html