用div标签包装iframe标签

时间:2015-11-30 13:01:09

标签: javascript jquery

我有一些包含帖子内容的HTML:

<div class="post-content">
  <iframe width="40" other-properties>
     iframe code
  </iframe>
  Other content and other tags
</div>

如何使用div包装在post-content中找到的所有iframe标记:

<div class="post-content">
  <div class="video">
    <iframe width="40" other-properties>
       iframe code
    </iframe>
    Other content and other tags
  </div>
</div>

2 个答案:

答案 0 :(得分:5)

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

答案 1 :(得分:0)

如果您需要在浏览器中执行此操作,可以使用jQuery(请参阅文档 - http://api.jquery.com/wrapinner/):

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