我正在制作一个简单的星级插件。但是我hover
在这个插件中放置事件时遇到问题。
jQuery,
(function($){
$.fn.extend({
rater: function(options) {
var defaults = {
}
var options = $.extend(defaults, options);
var o = options;
var $this = this;
$this.set_votes = function(object)
{
$(".replacement-radio",object).each(function(){
// Set variables.
var object = $(this);
var object_checked = object.attr('checked');
// Check if the object is checked.
if(object_checked === 'checked')
{
// Change stars.
$(this).next().prevAll('.button-star').andSelf().addClass('button-star-hover');
$(this).next().nextAll('.button-star').removeClass('button-star-hover');
}
});
}
$('.button-star').hover(
// Handles the mouseover.
function() {
$(this).prevAll('.button-star').andSelf().addClass('button-star-hover');
$(this).nextAll('.button-star').removeClass('button-star-hover');
},
// Handles the mouseout .
function() {
$(this).prevAll('.button-star').andSelf().removeClass('button-star-hover');
$this.set_votes($(this).parent());
}
);
// You must call return after declaring the functions.
return this.each(function() {
// Set the object.
var object = $(this);
//alert(object.html());
// Check if the object is present.
if(object.length > 0)
{
// Hide the object and add the star after it.
object.hide();
object.after('<span class="button-star"></span>');
// Attached click event to the button which created after the object.
$('.button-star').click(function(){
// Set the value into the radio button.
var $this_check = $(this).prev().attr('checked', true);
var $this_value = $(this).prev().val();
});
}
});
}
});
})(jQuery);
我不确定如何hover
在插件中调用/使用事件。因此,下面的悬停事件在我的星级插件中不起作用,
$('.button-star').hover(
// Handles the mouseover.
function() {
$(this).prevAll('.button-star').andSelf().addClass('button-star-hover');
$(this).nextAll('.button-star').removeClass('button-star-hover');
},
// Handles the mouseout .
function() {
$(this).prevAll('.button-star').andSelf().removeClass('button-star-hover');
$this.set_votes($(this).parent());
}
);
这是 jsfiddle链接。
知道我应该如何使它工作吗?