iframe不显示任何内容

时间:2017-10-16 18:04:20

标签: javascript html iframe

我有example.com域的以下iframe ...该域没有iframe块,但没有iframe apearing。有人有主意吗?此代码之前正在运行:

<!DOCTYPE html>
<html>
<body>

<iframe src="//example.com” height="200" width="300"></iframe>

</body>
</html>

很抱歉这是一个简单的报价问题,它修复了:

<!DOCTYPE html>
<html>
<body>

<iframe src="//example.com" height="200" width="300"></iframe>

</body>
</html>

我认为它可能与//example.com有关,或者他们使用iframe块更新,例如stackoverflow和google 像这样的地方就是我的想法:

<!DOCTYPE html>
<html>
<body>

<iframe src="//stackoverflow.com" height="200" width="300"></iframe>
<iframe src="//google.com" height="200" width="300"></iframe>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

<!—-This is a simple " issue after example.com—->
<!DOCTYPE html>
<html>
<body>

<iframe src="//example.com" height="200" width="300"></iframe>

</body>
</html>