【发布时间】:2018-09-27 08:22:16
【问题描述】:
我正在使用 HTML、CSS 和 JavaScript 创建一个带有粘性和响应式导航栏的网页。我创建了响应式导航栏,并试图使其具有粘性。问题是它不粘并显示错误: 未捕获的类型错误:无法读取 null 的属性“offsetTop”
HTML 代码:
<div class="topnav" id="myTopnav">
<a href="#home" class="active">Home</a>
<a href="#career">Careers</a>
<a href="#fellowship">About Us</a>
<a href="javascript:void(0);" class="icon" onclick="myFunctionForResponsive()">
<i class="fas fa-bars"></i>
</a>
</div>
JavaScript 代码:
// When the user scrolls the page, execute myFunction
window.onscroll = function() {myFunctionForSticky()};
// Get the navbar
var navbar = document.getElementById("myTopnav");
// Get the offset position of the navbar
var sticky = navbar.offsetTop;
// Add the sticky class to the navbar when you reach its scroll position.
Remove "sticky" when you leave the scroll position
function myFunctionForSticky() {
if(window.pageYOffset >= sticky){
console.log("window.pageYOffset >= sticky");
}
else{
console.log("Not window.pageYOffset >= sticky");
}
if (window.pageYOffset >= sticky) {
navbar.classList.add("sticky");
} else {
navbar.classList.remove("sticky");
}
}
/*Toggle between adding and removing the "responsive" class to topnav
when the user clicks on the icon*/
function myFunctionForResponsive() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
如果我正在上课而不是 id,那么它会显示错误: 未捕获的类型错误:无法读取未定义的属性“删除”
【问题讨论】:
-
页面中的脚本在哪里?
-
@connexo 在末尾的 部分,在 css 链接之后。
-
然后你需要将想要访问 DOM 的代码封装在一个监听
DOMContentLoaded的事件监听器中。 -
@connexo 你能解释一下你说的吗?我是新手。
-
它还有助于在“离开滚动位置时移除“粘滞””前面添加 2 个斜线
标签: javascript css html navigationbar