使用这两个jQuery片段有什么区别?
.append( $(this).contents() ); // and .append( $(this).html() );
解决方法
.contents()返回元素,从而移动它们.
http://api.jquery.com/contents/
.html()返回一个字符串,因此复制元素. http://api.jquery.com/html/