gpt4 book ai didi

javascript - 在 HTML 中隐藏和显示 div 标签

转载 作者:行者123 更新时间:2023-12-05 00:28:33 25 4
gpt4 key购买 nike

在这里,我试图隐藏 block ,但第一次我需要在每次刷新页面时双击按钮。我在下面附上了我的代码以供引用。

<!DOCTYPE html>
<html>

<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#myDIV {
width: 100%;
padding: 50px 0;
text-align: center;
background-color: lightblue;
margin-top: 20px;
display: none;
}
</style>
</head>

<body>

<p>Click the "Try it" button to toggle between hiding and showing the DIV element:</p>
<button onclick="myFunction()">Try it</button>
<div id="myDIV">
This is my DIV element.
</div>

<p><b>Note:</b> The element will not take up any space when the display property set to "none".</p>
<script>
function myFunction() {
var x = document.getElementById("myDIV");
if (x.style.display == "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</script>
</body>

</html>
为什么会这样,有人可以让我知道我在哪里犯错吗?

最佳答案

正如 this answer on SO 所解释的那样, 仅行内样式,或应用于元素的样式作为元素的属性,如<div style="diplay:none;"></div>当您访问 element.style 时将显示.您需要访问computedStyle从文档中的任何位置获取应用于元素的样式。
获取 computedStyle一个元素,你可以使用:

window.getComputedStyle(element).display
因此,您的 JS 代码应该如下所示:
function myFunction() {
var x = document.getElementById("myDIV");
console.log(typeof x)
console.log(window.getComputedStyle(x).display)
if (window.getComputedStyle(x).display == "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
在这里尝试:

function myFunction() {
var x = document.getElementById("myDIV");
if (window.getComputedStyle(x).display == "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
#myDIV {
width: 100%;
padding: 50px 0;
text-align: center;
background-color: lightblue;
margin-top: 20px;
display:none;
}
<p>Click the "Try it" button to toggle between hiding and showing the DIV element:</p>

<button onclick="myFunction()">Try it</button>

<div id="myDIV">
This is my DIV element.
</div>

<p><b>Note:</b> The element will not take up any space when the display property set to "none".</p>

关于javascript - 在 HTML 中隐藏和显示 div 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70562738/

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