浏览代码

Listing 5.20: stripping tags with text().

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

+ 1 - 0
Chapter 5/05.js

@@ -51,6 +51,7 @@ $(document).ready(function () {
       .find('span.drop')
       .html('…')
       .end()
+      .text($clonedCopy.text())
       .prependTo($parentParagraph);
   });
 });