需要你的帮助,认为这段代码有问题吗?它没有显示任何内容?
<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>
答案 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)
示例iframe:
<iframe class="gmap" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"
src="https://maps.google.co.in/maps/ms?msa=0&msid=212838658933937169734.0004f3360c6126926e728&ie=UTF8&ll=-6.947807,107.612513&spn=0,0&t=m&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>