我不确定我做错了什么,但我在这支笔中得到了一个错误。我假设我只是把东西放在错误的地方,但帮助和我做错了什么的描述将不胜感激
function on() {
document.getElementById('about').style.display ="block";
}
function off() {
document.getElementById('about').style.display ="none";
}
.about {
display: block;
z-index: 1;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Roboto Slab', serif;
background-color: #ffffff;
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Scaledish</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" type="image/png" href="https://preview.redd.it/y50x69der7h31.png?width=960&crop=smart&auto=webp&s=9179a708e2b531b3b89eed861c75d04375e6510b" />
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap" rel="stylesheet">
</head>
<body>
<script src="script.js"></script>
<div class="SlideContent">
<div class="about"
<div class="home">
<div class="TxtC">
<div class="ctxt">
<div class="TextHead">
Scaledish
</div>
<div class="TextBodyTW">
<a onclick='on()'>About</a>
</div>
</div>
</div>
</div>
</body>
</html>
您正在使用 getElementById,但没有 id = "about" 的元素
泰到:
<body>
<script src="script.js"></script>
<div class="SlideContent">
<div id="about" class="about">
<div class="home">
<div class="TxtC">
<div class="ctxt">
<div class="TextHead">
Scaledish
</div>
<div class="TextBodyTW">
<a onclick='on()'>About</a>
</div>
</div>
</div>
</div>
</body>
</html>
好吧,我可以看到两个问题:
1 - 您有一个缺少>
的标签:
<div class="about"
2 - 你的 JavaScript 正在寻找一个带有 id 属性的元素,但你的div 只有一个类属性。你可以试试:
// Get all elements with the class about, and then go to the first element of the array
document.getElementsByClassName("about")[0];
但最好的方法是在div 中添加一个 id 属性:
<div id="about" class="about">