为什么我不能在iframe中嵌入特定的URL?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么我不能在iframe中嵌入特定的URL?相关的知识,希望对你有一定的参考价值。
我一直试图弄清楚为什么我不能使用代码嵌入该特定网站:
<iframe src="https://time.my-masjid.com/timingscreen/7695401e-d724-4adb-a188-ed33c2ce886e"></iframe>
[执行此操作时,iframe呈现为白色框。
答案
默认情况下,iframe以较小的尺寸显示,但是如果您设置高度宽度,它将显示您的内容,您可以尝试以下操作:
<html>
<head>
<style>
iframe
position:absolute;
top:0;
left:0;
width:80%;
height:80%;
</style>
</head>
<body>
<iframe src="https://time.my-masjid.com/timingscreen/7695401e-d724-4adb-a188-ed33c2ce886e"></iframe>
</body>
</html>
以上是关于为什么我不能在iframe中嵌入特定的URL?的主要内容,如果未能解决你的问题,请参考以下文章
使用 iframe 嵌入视频网址时出现 Chrome 错误 [重复]
无法使用 cordova iOS 在 iframe 中正确加载外部 URL