我想在Click事件中使Raty只读,但它不起作用:
$('#number').raty({
click: function(score, evt) {
readOnly: true; //it does not work here
$.get(
"../../ajax/test.aspx",
{r:score},
function (data) { alert(data); },
"html"
);
},
scoreName: 'entity.score',
number: 10
});
答案 0 :(得分:7)
您需要取消绑定img
$('#star').raty({
click: function(score, evt) {
$(this).find('img').unbind('click');
// $(this).find('img').unbind(); <-- this removes all listeners
}
});