-6

画像をクリックして次のコードを実行するにはどうすればよいですか?

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

1 に答える 1

6
$('yourimageselector').click(function () {
  $('#container').animate({
      'opacity': 0
  }, 1000, function () {
      $(this).text('new text');
  }).animate({
      'opacity': 1
  }, 1000);
});
于 2013-03-14T16:38:08.940 に答える