我有一些HTML包含一個帖子內容:使用div標籤包裹的iframe標籤
<div class="post-content">
<iframe width="40" other-properties>
iframe code
</iframe>
Other content and other tags
</div>
我如何包裝內容後有一個div發現所有的iframe標籤:
<div class="post-content">
<div class="video">
<iframe width="40" other-properties>
iframe code
</iframe>
Other content and other tags
</div>
</div>
$(「iframe」)。wrap(「
」); –