iFrame 不显示内联 HTML 内容
iFrame not showing inline HTML content
我的网站上有一个 iFrame,我不想使用 src
属性,而是想在 iFrame 中显示内联 HTML。有什么办法可以做到这一点?
示例:
<iframe><p>Hello World</p></iframe>
应该在 iFrame 中显示“Hello World”的文字,但改为:
<iframe><p>Hello World</p></iframe>
使用 srcdoc
属性。
<iframe srcdoc='<img src="https://i.ibb.co/7XxsBr5/lena02.png" alt="lena02" border="0" width="100">' height='150' width='150'></iframe>
我的网站上有一个 iFrame,我不想使用 src
属性,而是想在 iFrame 中显示内联 HTML。有什么办法可以做到这一点?
示例:
<iframe><p>Hello World</p></iframe>
应该在 iFrame 中显示“Hello World”的文字,但改为:
<iframe><p>Hello World</p></iframe>
使用 srcdoc
属性。
<iframe srcdoc='<img src="https://i.ibb.co/7XxsBr5/lena02.png" alt="lena02" border="0" width="100">' height='150' width='150'></iframe>