标题不是很清楚,但我会试着解释一下。
我正在寻找一个jquery评级插件,其行为类似于标准星级,但根据所选值支持不同的图像和颜色
例如,在1-10的范围内:
我找到了this和this。但他们并没有完全按照我的意愿去做。
因此,如果有人知道是否有什么东西可以节省我很多时间来创建一个新的插件。
答案 0 :(得分:2)
为什么不自己制作?我已经构建了一个小小的演示来证明它是可能的:http://jsfiddle.net/s2zPW/18/。
代码也不是那么难:
<强> HTML:强>
<ul class="rating"></ul>
<强> JavaScript的:强>
$.fn.reverse = function() {
return this.pushStack(this.get().reverse(), arguments);
};
// create two new functions: prevALL and nextALL. they're very similar, hence this style.
$.each(['prev', 'next'], function(unusedIndex, name) {
$.fn[name + 'ALL'] = function(matchExpr) {
// get all the elements in the body, including the body.
var $all = $('body').find('*').andSelf();
// slice the $all object according to which way we're looking
$all = (name == 'prev') ? $all.slice(0, $all.index(this)).reverse() : $all.slice($all.index(this) + 1);
// filter the matches if specified
if (matchExpr) $all = $all.filter(matchExpr);
return $all;
};
});
for (var i = 0; i < 10; i++) {
$('.rating').append('<li>' + i + '</li>');
}
$('.rating li').hover(function() {
if ($(this).index() < 2) {
$(this).prevALL('li').css('background-color', 'rgb(255, 160, 160)');
} else if ($(this).index() < 4) {
$(this).prevALL('li').css('background-color', 'rgb(255, 200, 200)');
} else if ($(this).index() < 7) {
$(this).prevALL('li').css('background-color', 'rgb(235, 220, 200)');
} else if ($(this).index() < 10) {
$(this).prevALL('li').css('background-color', 'rgb(200, 255, 200)');
}
}, function() {
$(this).parent().children().css('background-color', 'rgb(200, 200, 200)');
});