我的网页上有一个div,我已将属性resize
设置为both
。它会在Google Chrome中调整大小,但不会在Firefox或Internet Explorer中调整大小。
document.getElementById('IdDivMain').style.height = "394px"
document.getElementById('IdDivMain').style.resize = "both";
答案 0 :(得分:2)
为什么它在Internet Explorer中不起作用
Internet Explorer中根本不支持resize
属性 - 还没有找到关于Edge思想的内容
为什么它在firefox中不起作用
根据{{3}}
resize不适用于overflow属性设置为visible的块。
默认overflow
(至少对于div)是visible
- 因此,将溢出设置为visible
以外的其他内容应允许resize
执行此操作