1 Star 0 Fork 0

一路踩红/interview

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
真实宽高.html 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
一路踩红 提交于 2020-01-01 22:19 . yuan
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div style="height: 100px;">
<div style="height: 60px;"></div>
<div style="height: 60px;"></div>
</div>
<div style="height: 40px;">
</div>
<script>
let a = traverse(document.body)
function traverse(father, children) {
arr = document.getElementsByTagName("*");
let result = [];
[].forEach.call(arr, node => {
if (node.currentStyle) {
if(parseInt(node.currentStyle.height) > 50 && node.currentStyle.width > 50){
result.push(node)
}
} else {
if (parseInt(getComputedStyle(node).height) > 50 && parseInt(getComputedStyle(node).width) > 50) {
result.push(node)
}
}
})
return result
}
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/a13078253870/interview.git
[email protected]:a13078253870/interview.git
a13078253870
interview
interview
master

搜索帮助