如何通过点击图片来执行以下代码?
$('#container').animate({'opacity': 0}, 1000, function () {
$(this).text('new text');
}).animate({'opacity': 1}, 1000);
答案 0 :(得分:6)
$('yourimageselector').click(function () {
$('#container').animate({
'opacity': 0
}, 1000, function () {
$(this).text('new text');
}).animate({
'opacity': 1
}, 1000);
});