iframe无法正常显示

时间:2014-02-26 01:23:07

标签: html iframe

需要你的帮助,认为这段代码有问题吗?它没有显示任何内容?

<iframe style='overflow: hidden; border: 0; width: 720px; height: 362px' src='<iframe width="600" height="480" frameborder="0" src="http://embed.movshare.net/embed.php?v=ksm4jw0p1e6yv" scrolling="no"></iframe>

2 个答案:

答案 0 :(得分:1)

您似乎已经将两个iframe嵌套在一起,这与您尝试过的方式不同。我假设您只想在iframe中显示http://embed.movshare.net/embed.php?v=ksm4jw0p1e6yv。这个代码看起来像这样:

<iframe style="overflow: hidden; border: 0; width: 720px; height: 362px" 
    src="http://embed.movshare.net/embed.php?v=ksm4jw0p1e6yv" scrolling="no">
</iframe>

this JSFiddle中查看。

答案 1 :(得分:0)

来自Google的

示例iframe:

<iframe class="gmap" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"
src="https://maps.google.co.in/maps/ms?msa=0&amp;msid=212838658933937169734.0004f3360c6126926e728&amp;ie=UTF8&amp;ll=-6.947807,107.612513&amp;spn=0,0&amp;t=m&amp;output=embed">
</iframe>

您的代码

<iframe style=' border: 0; width: 720px; height: 362px' src='<iframe width="600" height="480" frameborder="0" src="http://embed.movshare.net/embed.php?v=ksm4jw0p1e6yv" scrolling="no"></iframe>

这是对您的代码的更正:

<iframe src="http://embed.movshare.net/embed.php?v=ksm4jw0p1e6yv" style="border:0;width:720px;height:362px" frameborder="0"></iframe>