码迷,mamicode.com
首页 > Windows程序 > 详细

Failed to execute 'getComputedStyle' on 'Window': parameter 1 is not of type 'Element'.

时间:2019-07-16 00:16:59      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:elements   简单   computed   NPU   原来   round   exe   margin   onload   

今天复习了一下关于getComputedStyle的用法,遇到了小小的挫折。报错前的代码:

<div class="box">
        <div id="box1">
            <input type="text">
            <input type="text">
            <input type="text">
        </div>
    </div>
    <style>
        .box{
            width: 300px;
            height: 200px;
            margin: 20px auto;
            border: 1px solid red;
        }
        #box1{
            width: 100%;
            height: 100px;
            background:blue;
            margin: 5px auto;
        }
    </style>
    <script>
        window.onload=function(){
            var box = document.getElementsByClassName(‘box‘);
            alert(window.getComputedStyle(box,null).height)
        }
    </script>

 

当然,这只是随便举的例子,然而却遇到了标题上面的报错,纠结了一会后,终于解决了。原来是获取dom元素时,应该通过标签中的id属性去获取,这样仅需要改为

var box = document.getElementById(‘box1‘)就OK啦,是不是很简单。

Failed to execute 'getComputedStyle' on 'Window': parameter 1 is not of type 'Element'.

标签:elements   简单   computed   NPU   原来   round   exe   margin   onload   

原文地址:https://www.cnblogs.com/niupeinan/p/11192212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!