jquery简单的星星评分插件

所属分类: 网页特效-投票&评分    2024-11-13 03:04:05

jquery简单的星星评分插件 ie兼容6
 查看演示  登录后下载 温馨提示
登录会员即可享受免费下载
 我要建站

jquery简单的星星评分插件(共3个文件)

    • script.js
    • index.html
    • style.css

使用方法

$(document).ready(function(){
  
  /* 1. Visualizing things on Hover - See next part for action on click */
  $('#stars li').on('mouseover', function(){
    var onStar = parseInt($(this).data('value'), 10); // The star currently mouse on
   
    // Now highlight all the stars that's not after the current hovered star
    $(this).parent().children('li.star').each(function(e){
      if (e < onStar) {
        $(this).addClass('hover');
      }
      else {
        $(this).removeClass('hover');
      }
    });
    
  }).on('mouseout', function(){
    $(this).parent().children('li.star').each(function(e){
      $(this).removeClass('hover');
    });
  });
  
  
  /* 2. Action to perform on click */
  $('#stars li').on('click', function(){
    var onStar = parseInt($(this).data('value'), 10); // The star currently selected
    var stars = $(this).parent().children('li.star');
    
    for (i = 0; i < stars.length; i++) {
      $(stars[i]).removeClass('selected');
    }
    
    for (i = 0; i < onStar; i++) {
      $(stars[i]).addClass('selected');
    }
    
    // JUST RESPONSE (Not needed)
    var ratingValue = parseInt($('#stars li.selected').last().data('value'), 10);
    var msg = "";
    if (ratingValue > 1) {
        msg = "谢谢!您评分 " + ratingValue + " 颗星!";
    }
    else {
        msg = "服务有待提高 您评分" + ratingValue + " 颗星!";
    }
    responseMessage(msg);
    
  });
  
  
});


function responseMessage(msg) {
  $('.success-box').fadeIn(200);  
  $('.success-box div.text-message').html("<span>" + msg + "</span>");
}

站长提示:
1. 苦力吧素材官方QQ群:950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励2K币
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / 投票&评分

jquery鼠标滑动星星打分生活美食网站星级评分

一款在线打分评价插件,鼠标hover即时显示当前评分等级,点击选中评分。
  投票&评分
 3228  0

jquery手机移动端在线投票

一款手机端人物评选投票系统,带活动规则和排行榜弹出层显示,可针对每个人物进行投票。
  投票&评分
 235  0

jquery商品订单评价

一款星级评分特效,五星评分和多选菜单功能,以及留言文本框。
  投票&评分
 747  0

jquery基于radio星星评分打分特效代码

一款星级评分插件,集成了三种不同的模式:基础评分、自动提交、悬停交互,带回调提示。
  投票&评分
 3282  0

评论数(0) 回复有机会获得K币 用户协议

^_^ 还没有人评论,快来抢个沙发!
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论