jquery中子元素和后代元素的区别

子元素就是直接后代,后代元素包括子元素和间接后代。

<div>This is <strong>very</strong> important.</div>

<div>This is <em>really <strong>very</strong></em> important.</div>

第一个strong是div的子元素,也是后代元素;

第二个strong是div的后代元素,不是子元素,但他是em的子元素。

原文地址:https://www.cnblogs.com/hanzhecheng/p/4809382.html