浏览代码

Listing 6.16: fadeIn() on load().

Frederic G. MARAND 9 年之前
父节点
当前提交
55471653ee
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      Chapter 6/06.js

+ 3 - 1
Chapter 6/06.js

@@ -3,7 +3,9 @@ $(document).ready(function () {
 
   $('#letter-a a').click(function (event) {
     event.preventDefault();
-    $('#dictionary').load('a.html');
+    $('#dictionary').hide().load('a.html', function () {
+      $(this).fadeIn();
+    });
   });
 
   $('#letter-b a').click(function (event) {