星号等级选择器,默认等级
JavaScript Code
- <script>
- /* This is out callback function for when a rating is submitted
- */
- function rateAlert(id, rating)
- {
- alert( 'Rating for '+id+' is '+rating+' stars!' );
- }
- /* Here we initialize raterater on our rating boxes
- */
- $(function() {
- $( '.ratebox' ).raterater( {
- submitFunction: 'rateAlert',
- allowChange: true,
- starWidth: 100,
- spaceWidth: 10,
- numStars: 5
- } );
- });
- </script>
原文地址:http://www.freejs.net/article_jquerywenzi_533.html