添加代码以单击事件

时间:2013-03-14 16:37:29

标签: javascript jquery

如何通过点击图片来执行以下代码?

$('#container').animate({'opacity': 0}, 1000, function () {
$(this).text('new text');
}).animate({'opacity': 1}, 1000);

1 个答案:

答案 0 :(得分:6)

$('yourimageselector').click(function () {
  $('#container').animate({
      'opacity': 0
  }, 1000, function () {
      $(this).text('new text');
  }).animate({
      'opacity': 1
  }, 1000);
});