2015-11-30 44 views
0

我有一些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> 
+2

$(「iframe」)。wrap(「

」); –

回答

5
$(".post-content iframe").wrap('<div class="video"></div>'); 
+0

很好(y)它解決了我的問題 –

0

如果需要在瀏覽器中執行此操作,可以使用jQuery(請參閱文檔 - http://api.jquery.com/wrapinner/):

$(".post-content").wrapInner("<div class='video'></div>")