浏览代码

Listing 5.10: number footnotes using wrap()/wrapAll().

Frederic G. MARAND 9 年之前
父节点
当前提交
ae0aa68c51
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      Chapter 5/05.js

+ 4 - 1
Chapter 5/05.js

@@ -18,7 +18,10 @@ $(document).ready(function () {
   // 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');
+  $('span.footnote')
+    .insertBefore('#footer')
+    .wrapAll('<ol id="notes"></ol>')
+    .wrap('<li></li>');
 });