html – 为什么没有为与页面相同的URL加载iframe

前端之家收集整理的这篇文章主要介绍了html – 为什么没有为与页面相同的URL加载iframe前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我只是在测试一些东西并遇到了有趣的iframe行为.
页面上我有以下iframe:
<iframe src="/Wizard/Start"></iframe>

现在,如果iframe的src与页面的URL(… / Wizard / Start)相同,则iframe不会加载内容,只保留空白并且没有错误,警告或任何报告.

我可以看到这是设计的,在所有浏览器中都是一样的.

为什么?有关此行为的任何官方文档?

解决方法

这确实是指定的行为.您的问题的答案在本文档中:

http://www.w3.org/TR/WD-frames-970331

在“无限递归”一节中,它说:

Infinite recursion is prevented. Any frame that attempts to assign as its SRC a URL used by any of its ancestors is treated as if it has
no SRC URL at all (basically a blank frame). This doesn’t prevent all
malicIoUs documents,but it eliminates a troublesome class of them.

文件可以追溯到1997年,但据我所知,尚未被取代.

原文链接:https://www.f2er.com/html/226267.html

猜你在找的HTML相关文章