我需要改变iframe
尺寸。这是我的html代码
<iframe id="stream" width="720" height="433" src="#HiddedIt" style="border:0;outline:0" frameborder="0" scrolling="no"></iframe>
这是我的 Javascript:
if (window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth < 1100){
document.getElementById("stream").width = "485px";
document.getElementById("stream").height = "295px";
}
当用户的分辨率低于 1100 时,它不会改变 iframe 的大小。你能告诉我哪里做错了吗?谢谢你。
if
正在工作,但iframe
' 的大小没有改变。