标签: html iframe
我通常使用iframe,其中src指向包含图像的HTML文件:
I帧
<iframe src="/image.html">
Image.html
<img src="/hello.jpg">
然而,有一次我意外地使用了Iframe中的图像路径
<iframe src="/hello.jpg">
它仍然完美无缺。这是使用这种方法的正常方法吗?我正在考虑是否在不同的浏览器上存在任何不一致的问题/或者这种方法是否在HTML中正式允许。
感谢。