瀏覽代碼

Listing 5.7: insert links with insertAfter().

Frederic G. MARAND 9 年之前
父節點
當前提交
4c7bb55200
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Chapter 5/05.js

+ 1 - 1
Chapter 5/05.js

@@ -13,6 +13,6 @@ $(document).ready(function () {
   });
 
   // Add "back to top" links.
-  $('<a href="#top">back to top</a>');
+  $('<a href="#top">back to top</a>').insertAfter('div.chapter p');
   $('<a id="top"></a>');
 });