在弹出窗口中使用iframe打开时自动下载视频

时间:2016-05-30 13:43:39

标签: jquery iframe popup

我想在弹出窗口中显示视频。 所以我已经使用了iframe。但是当我打开弹出窗口时,它会自动下载视频而不是在弹出窗口中打开它。 下面是我的弹出代码

<div id="Portfolio_div" class="white_content_loading animate SlideInDown"  style="display:none;"> 
  <div class="port-wrap-img">
    <a href="javascript:void(0)" class="close"></a> 
    <div class="lg-bt1">
    <span id="Prev"  style="pointer:cursor;"  class="previous port-pr"></span>
    </div>

    <div id="divedit1" class="setmar2" align="center" >

    <div style="clear:both;"></div>
    </div>
    <div class="lg-bt2">
      <span id="Next" style="pointer:cursor;" style="" class="next port-ne"></span>
    </div>
  </div>  

<div style="clear:both;"> &nbsp; </div>
</div>
<div id="fade_share1_div" class="black_overlay" style="display:none;"></div>

以下是我的脚本,它将视频加载到弹出窗口

firstvideo=site_url.ajaxurl+data;
        var imgStr='<iframe src='+site_url.ajaxurl+data+' width="500px" height="290px" id="you_vid" />  ';

        $('#Portfolio_div').css('display','block');
        $('#fade_share1_div').css('display','block');
        $('#divedit1').html(imgStr);

我不知道问题是什么,请帮我摆脱这个

0 个答案:

没有答案