gpt4 book ai didi

javascript - 使用 Tether Javascript 库导致异常

转载 作者:搜寻专家 更新时间:2023-10-31 22:20:54 25 4
gpt4 key购买 nike

我正在开发一个新网站,我想在容器 div 的底部包含一个页脚。

我找到了一个名为 Tether ( http://github.hubspot.com/tether/ ) 的 javascript 库,但我在实现时遇到了问题。

下面是我的HTML代码

<html>
<head>
<title>Bug Reporting</title>
<link href="StyleSheet.css" type="text/css" rel="stylesheet" />
<script src="includes/jquery.js"></script>
<script src="includes/tether/tether.js"></script>
<script>
$(document).ready(function()
{
new Tether({
element: '.footer',
target: '.container',
attachment: 'top left',
targetAttachment: 'bottom left'
});
});
</script>
</head>
<body>
<div class="container">
<header>
This is the body
</header>

<div id="content">
This is the content<br />
</div>

<div class="footer1">
This is the footer
</div>
</div>
</body>
</html>

下面是我的样式表

html, body
{
font-family: arial;
margin: 0;
padding: 0;
}

header
{
background-color: red;
width: 100%;
height: 80px;
}

.container
{
background-color: yellow;
height: calc(100% - 80px);
width: 100%;
}

#content
{
background-color: blue;
width: 1024px;
margin-left: auto;
margin-right: auto;
height: auto;
}

.footer1
{
position: absolute;
background-color: green;
width: 100%;
height: 80px;
}

问题是当我加载页面时,我在 tether 库中遇到异常

Uncaught TypeError: Cannot read property 'classList' of null

感谢您提供的任何帮助。

最佳答案

Tether 的 optionselementtarget 定义为 DOM 或 jQuery element(从这个词的广义上讲),而不是字符串。

您需要将一个 jQuery 对象传递给 Tether,如下所示:

$(document).ready(function() {
new Tether({
element: $('.footer'),
target: $('.container'),
attachment: 'top left',
targetAttachment: 'bottom left'
});
});

在初始化 Tether 实例时,还要确保元素在页面上。

关于javascript - 使用 Tether Javascript 库导致异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21491529/

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