gpt4 book ai didi

JavaScript - 未捕获的类型错误 : Failed to execute 'getComputedStyle' on 'Window' : parameter 1 is not of type 'Element'

转载 作者:行者123 更新时间:2023-11-28 05:19:19 27 4
gpt4 key购买 nike

我收到以下错误:

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

我的 Stickyfill 源有问题 ( https://github.com/wilddeer/stickyfill )

我尝试了更多版本,但仍然遇到相同的错误。我的 JavaScript 源代码如下所示:

var a = document.getElementById('left');
Stickyfill.add(a);

为什么我会收到此错误,如何修复它?

编辑:这是我的 html 页面:

    <!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="css-home.css">
<script type="text/javascript" src="stickyfill.js"></script>
<script type="text/javascript" src="js-home.js"></script>

</head>
<body>

<div id="container">
<div id="banner">
<img src="sigla.jpg">
</div>
<div id="container2">
<div id="left">
<nav>
<a target="ifr" href="">Home</a>
<a target="ifr" href="">Istoric</a>
<a target="ifr" href="echipa.html">Echipa</a>
<a target="ifr" href="">Galerie</a>
</nav>
</div>
<div id="right">

<iframe name="ifr" src="echipa.html" frameborder="0" ></iframe>

</div>
</div>
<div id="footer">
<p>CS MIOVENI</p>
</div>
</div>
</body>

</html>

稍后编辑:我已经使用 window.onload 我的 javascript 文件解决了这个问题

最佳答案

您能否确认:

var a = document.getElementById('left');

在将其传递给 Stickyfill.add(a) 之前实际上返回一个元素?使用调试器单步执行或记录日志,例如;

var a = document.getElementById('left');
// Is an element returned?
console.log(a instanceof Element);
Stickyfill.add(a);

关于JavaScript - 未捕获的类型错误 : Failed to execute 'getComputedStyle' on 'Window' : parameter 1 is not of type 'Element' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40698912/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com