0

我在尝试显示 iframe 时遇到问题。事情是这样的:首先我在html5中加载一个视频,然后当视频完成时隐藏视频并用jquery显示iframe div(这是神秘的),但由于某种原因,当视频隐藏iframe时没有出现,当我检查元素时,标签在那里,但 src empty 出现

<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" charset="utf-8"> 
jQuery(document).ready(function() {  
    jQuery("#video").bind("ended", function() {    
        jQuery("#video-promo").hide();      
        jQuery("#video-streaming").show();  
        });    
});
</script>

这是HTML:

<div id="video-promo">
    <video width="680" height="371" id="video" autoplay="autoplay">
        <source src="/video/first_test.m4v" type="video/mp4" />
    </video>
</div>

<div id="video-streaming" style="display:none;">
    <iframe width="560" height="315" src="http://www.youtube.com/embed/FmxSk0wZxss" frameborder="0" allowfullscreen></iframe>
</div>

想法?提前致谢。

4

1 回答 1

0

您可以将小片段添加到您的 functions.php 中,这将使您能够轻松地显示 iframe,甚至可以在帖子/页面内或直接在主题中设置大小

在您的functions.php(或包含的文件)中:

function myiframe( $atts ) {
    extract( shortcode_atts( array(
        'href' => 'http://the-url',
        'height' => '550px',
        'width' => '600px',     
    ), $atts ) );

    return '<iframe src="'.$href.'" width="'.$width.'" height="'.$height.'"> <p>Your Browser does not support Iframes.</p></iframe>';
}
add_shortcode('iframe', 'myiframe');

.
直接在帖子/页面中 - 如何使用:

[iframe href="http://www.exmaple.com" height="480" width="640"]

.
直接在您的主题中 - 如何使用:

<?php do_shortcode('[iframe href="http://www.exmaple.com" height="480" width="640"]'); ?>

使用的属性:

  1. href = iframe 的来源
  2. height = iframe 的高度(可以在函数中设置默认值)
  3. width = iframe 的宽度(可以在函数中设置默认值)

.
希望这可以帮助。
贤者。

于 2012-09-10T23:47:23.493 回答