?
This document uses PHP Chinese website manual Release
查找匹配元素內(nèi)部所有的子節(jié)點(包括文本節(jié)點)。如果元素是一個iframe,則查找文檔內(nèi)容
查找所有文本節(jié)點并加粗
<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>
往一個空框架中加些內(nèi)容
<iframe src="/index-blank.html" width="300" height="100"></iframe>
$("iframe").contents().find("body") .append("I'm in an iframe!");