为什么在css中定义了一个元素的绝对定位属性;在js中无法获取这个属性呢
1 回答
有只小跳蛙
TA贡献1824条经验 获得超8个赞
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Document</title>
<style>
#list{width: 100px;height: 100px;background: #09c;position: absolute;}
</style>
</head>
<body>
<div id="list"></div>
<script>
var list = document.getElementById('list');
console.log(window.getComputedStyle(list,null).position);
</script>
</body>
</html>
亲测可以实现,兼容到IE9
- 1 回答
- 0 关注
- 609 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消