有人可以向我解释为什么“this”选择器不适用于 animate() 方法属性。
请参阅http://jsfiddle.net/qZVv4/上的第一个示例,没有产生任何错误,它只是忽略它。
$('#test1 .bar[data-percentage]').animate({
width: $(this).attr('data-percentage'),
easing: 'easeOutBounce'
}, 1000, function () {
$(this).text($(this).attr('data-percentage'));
});