欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用jQuery实现星级评分代码分享

程序员文章站 2022-04-18 13:41:51
前面有一篇原生js实现星级评分 。可能覆盖面不是很广,现在给出一个jquery实现的星级评分。 代码如下:

前面有一篇原生js实现星级评分 。可能覆盖面不是很广,现在给出一个jquery实现的星级评分。

代码如下:


<p class="star"> 
<span>jquery星级评论打分</span> 
<ul> 
<li><a href="javascript:;">1</a></li> 
<li><a href="javascript:;">2</a></li> 
<li><a href="javascript:;">3</a></li> 
<li><a href="javascript:;">4</a></li> 
<li><a href="javascript:;">5</a></li> 
</ul> 
</p> 

代码如下:


<style> 
*{margin:0;padding:0;font-size:13px;} 
ul,li{list-style:none;} 
.star {position:relative;width:600px;height:24px; margin:20px auto 0;} 
.star span {float:left;height:19px;line-height:19px;} 
.star ul{margin:0 10px;} 
.star li{float:left;width:24px;height:22px;text-indent:-9999px;background:url('star.png') no-repeat;cursor:pointer;} 
.star li.on{background-position:0 -28px;} 
.star p {padding:10px 10px 0;position:absolute;top:20px;width:159px;height:60px;z-index:100;} 
.star p em {color: #ff6600;display: block;font-style: normal;} 
.star strong {color:#ff6600;padding-left:10px;} 
.hidden{display:none;} 
</style> 

 

 

代码如下:


<script type="text/javascript" src="http://s.thsi.cn/js/jquery-1.7.2.min.js"></script> 
<script type="text/javascript" src="score.js"></script> 
</head> 
 
<body> 
<script type="text/javascript"> 
$(function(){ 
var score = new score({ 
callback: function(cfg) { 
console.log(cfg.staramount); 

}); 
}); 
</script> 


 

代码如下:


/**
 * jq评分效果
 */ 
 function score(options) { 
    this.config = { 
        selector                  :   '.star',     // 评分容器 
        rendercallback            :   null,        // 渲染页面后回调 
        callback                  :   null         // 点击评分回调                          
    }; 
 
    this.cache = { 
        amsg : [ 
                "很不满意|差得太离谱,与卖家描述的严重不符,非常不满", 
                "不满意|部分有破损,与卖家描述的不符,不满意", 
                "一般|质量一般,没有卖家描述的那么好", 
                "满意|质量不错,与卖家描述的基本一致,还是挺满意的", 
                "非常满意|质量非常好,与卖家描述的完全一致,非常满意" 
                ], 
        istar  : 0, 
        iscore : 0 
    }; 
 
    this.init(options); 
 } 
 
 score.prototype = { 
 
    constructor: score, 
 
    init: function(options){ 
        this.config = $.extend(this.config,options || {}); 
        var self = this, 
            _config = self.config, 
            _cache = self.cache; 
 
        self._renderhtml(); 
    }, 
    _renderhtml: function(){ 
        var self = this, 
            _config = self.config; 
        var html = '<span class="desc"></span>' +  
                   '<p class="star-p hidden"></p>'; 
        $(_config.selector).each(function(index,item){ 
            $(item).append(html); 
            $(item).wrap($('<p class="parentcls" style="position:relative"></p>')); 
            var parentcls = $(item).closest('.parentcls'); 
            self._bindenv(parentcls); 
            _config.rendercallback && $.isfunction(_config.rendercallback) && _config.rendercallback(); 
        }); 
 
    }, 
    _bindenv: function(parentcls){ 
        var self = this, 
            _config = self.config, 
            _cache = self.cache; 
 
        $(_config.selector + ' li',parentcls).each(function(index,item){ 
             
            // 鼠标移上 
            $(item).mouver(function(e){ 
                var offsetleft = $('ul',parentcls)[0].offsetleft; 
                ismax(index + 1); 
                 
                $('p',parentcls).hasclass('hidden') && $('p',parentcls).removeclass('hidden'); 
                $('p',parentcls).css({'left':index*$(this).width() + 12 + 'px'}); 
                 
 
                var html = '<em>' +  
                              '<b>'+index+'</b>分 '+_cache.amsg[index].split('|')[0]+'' +  
                           '</em>' + _cache.amsg[index].split('|')[1]; 
                $('p',parentcls).html(html); 
            }); 
 
            // 鼠标移出 
            $(item).mouseout(function(){ 
                ismax(); 
                !$('p',parentcls).hasclass('hidden') && $('p',parentcls).addclass('hidden'); 
            }); 
             
            // 鼠标点击 
            $(item).click(function(e){ 
                var index = $(_config.selector + ' li',parentcls).index($(this)); 
                _cache.istar = index + 1; 
                                 
                !$('p',parentcls).hasclass('hidden') && $('p',parentcls).addclass('hidden'); 
                var html = '<strong>' + 
                                index + 
                           '分</strong>' +_cache.amsg[index].split('|')[1]; 
 
                $('.desc',parentcls).html(html); 
                _config.callback && $.isfunction(_config.callback) && _config.callback({staramount:_cache.istar}); 
            }); 
             
        }); 
 
        function ismax(iarg) { 
            _cache.iscore = iarg || _cache.istar; 
            var lis = $(_config.selector + ' li',parentcls); 
             
            for(var i = 0; i < lis.length; i++) { 
                lis[i].classname = i < _cache.iscore ? "on" : ""; 
            } 
        } 
    } 
 };