©
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
查找匹配元素内部所有的子节点(包括文本节点)。如果元素是一个iframe,则查找文档内容
查找所有文本节点并加粗
<p>Hello <a href="http://ejohn.org/">John</a>, how are you doing?</p>
$("p").contents().not("[nodeType=1]").wrap("<b/>");
<p><b>Hello</b> <a href="http://ejohn.org/">John</a>, <b>how are you doing?</b></p>
往一个空框架中加些内容
<iframe src="/index-blank.html" width="300" height="100"></iframe>
$("iframe").contents().find("body") .append("I'm in an iframe!");