瀏覽代碼

Listing 5.9: moving footnotes with insertBefore().

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

+ 5 - 0
Chapter 5/05.js

@@ -16,4 +16,9 @@ $(document).ready(function () {
   $('<a href="#top">back to top</a>').insertAfter('div.chapter p');
   $('<a id="top"></a>').prependTo('body');
   // insertBefore <elem> prependTo <children /> appendTo </elem> insertAfter
+
+  // Create footnotes.
+  $('span.footnote').insertBefore('#footer');
+  // This works just as well, in spite of what the book says.
+  // $('span.footnote').insertAfter('div.chapter');
 });