소스 검색

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>');
 });