基本信息
源码名称:jquery评分插件
源码大小:0.11M
文件格式:.rar
开发语言:js
更新时间:2015-12-16
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
jquery评分插件
jquery评分插件
$(function() { $.fn.raty.defaults.path = 'lib/img'; $('#function-demo').raty({ number: 3,//多少个星星设置 targetType: 'hint',//类型选择,number是数字值,hint,是设置的数组值 path : 'demo/img', hints : ['差','一般','好'], cancelOff : 'cancel-off-big.png', cancelOn : 'cancel-on-big.png', size : 24, starHalf : 'star-half-big.png', starOff : 'star-off-big.png', starOn : 'star-on-big.png', target : '#function-hint', cancel : false, targetKeep: true, targetText: '请选择评分', click: function(score, evt) { alert('ID: ' $(this).attr('id') "\nscore: " score "\nevent: " evt.type); } }); $('#function-demo1').raty({ number: 10,//多少个星星设置 score: 2,//初始值是设置 targetType: 'number',//类型选择,number是数字值,hint,是设置的数组值 path : 'demo/img', cancelOff : 'cancel-off-big.png', cancelOn : 'cancel-on-big.png', size : 24, starHalf : 'star-half-big.png', starOff : 'star-off-big.png', starOn : 'star-on-big.png', target : '#function-hint1', cancel : false, targetKeep: true, precision : false,//是否包含小数 click: function(score, evt) { alert('ID: ' $(this).attr('id') "\nscore: " score "\nevent: " evt.type); } }); });