こんにちは私はjqueryを使用して写真をズームしようとしていますが、それも機能しています。デモ。しかし、問題は、以前のサイズに戻れないことです。これがコードです-
jQuery("#myimg").click(function () {
$(this).replaceWith( "<img id='myimgBig' src='http://www.gravatar.com/avatar/0f510b2337a6077896036f31d4f45eb7?s=420' width='420' height='420' title='that's me' alt='Uddhab' />" );
});
jQuery("#myimgBig").click(function () {
$(this).replaceWith( "<img id='myimg' src='http://www.gravatar.com/avatar/0f510b2337a6077896036f31d4f45eb7?s=120' width='120' height='120' title='that's me' alt='Uddhab' />" );
});
#myimgBigのclikの#myimgに戻りたいです。しかし、上記のコードは機能しません:(どこが間違っています!!助けてください...