iframe嵌套不能使用全屏
2024-04-29 本文已影响0人
喜欢走弯路的人
添加allowfullscreen属性:确保iframe标签包含allowfullscreen属性,这允许iframe内的内容请求全屏模式,
使用webkitallowfullscreen属性作为兼容性措施:
例如
<iframe src="your-source-url.html" width="100%" height="300" allowfullscreen webkitallowfullscreen></iframe>