推荐一款JQuery星形评级插件
jRating 是一个非常灵活的jQuery插件用于快速创建一个Ajax星型投票系统。可以设置星型数量和小数支持。功能很强大,具体大家可以看一下这个插件的js代码就知道了,下面这里演示一下这个插件有哪些功能与具体如何实现。偃师市一中
<!-- JS to add --> <script type="text/javascript"> $(document).ready(function(){ $(".basic").jRating(); }); </script>
<!-- JS to add --> <script type="text/javascript"> $(document).ready(function(){ $(".exemple2").jRating({ type:‘small‘, // type of the rate.. can be set to ‘small‘ or ‘big‘ length : 40, // nb of stars decimalLength : 1 // number of decimal in the rate }); }); </script>
<!-- JS to add --> <script type="text/javascript"> $(document).ready(function(){ $(".exemple3").jRating({ step:true, length : 20, // nb of stars decimalLength:0 // number of decimal in the rate }); }); </script>
<!-- JS to add --> <script type="text/javascript"> $(document).ready(function(){ $(".exemple4").jRating({ isDisabled : true }); }); </script>
<!-- JS to add --> <script type="text/javascript"> $(document).ready(function(){ $(".exemple5").jRating({ length:10, decimalLength:1, onSuccess : function(){ alert(‘Success : your rate has been saved :)‘); }, onError : function(){ alert(‘Error : please retry‘); } }); }); </script>
<!-- JS to add --> <script type="text/javascript"> $(document).ready(function(){ $(".exemple6").jRating({ onSuccess : function(){ jSuccess(‘Success : your rate has been saved :)‘,{ HorizontalPosition:‘center‘, VerticalPosition:‘top‘ }); }, onError : function(){ jError(‘Error : please retry‘); } }); }); </script>
<!-- JS to add --> <script type="text/javascript"> $(document).ready(function(){ $(".exemple7").jRating({ showRateInfo:false }); }); </script>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。