如何获取HTML的高度
答案:2 悬赏:50 手机版
解决时间 2021-01-21 23:05
- 提问者网友:川水往事
- 2021-01-21 17:51
如何获取HTML的高度
最佳答案
- 五星知识达人网友:掌灯师
- 2021-01-04 07:18
用这个方法:getComputedStyle() ,用法:getComputedStyle(obj)['height']
这个东西有不兼容IE8及其以下版本,这些版本的IE没有这方法,它们用的是currentStyle,所以,兼容写法:
function getStyle(obj, name) {
return window.getComputedStyle?getComputedStyle(obj, null)[name]:obj.currentStyle[name];
}
这个东西有不兼容IE8及其以下版本,这些版本的IE没有这方法,它们用的是currentStyle,所以,兼容写法:
function getStyle(obj, name) {
return window.getComputedStyle?getComputedStyle(obj, null)[name]:obj.currentStyle[name];
}
全部回答
- 1楼网友:怙棘
- 2020-03-25 23:31
width_screen=screen.width; // 获取宽度
height_screen=screen.height; 高度
availwidth_screen=screen.availwidth;
availheight_screen=screen.availheight;
colordepth_screen=screen.colordepth;
如果是动态获取的话,就自己写一个方法什么的给封装一下,然后加载。
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯