gpt4 book ai didi

javascript - 切换 - 隐藏和显示

转载 作者:行者123 更新时间:2023-11-28 04:02:36 25 4
gpt4 key购买 nike

我复制了 w3schools 的隐藏和显示切换,但我希望将其反转,这样额外的信息从一开始就不存在,但按钮会显示它。

这是代码:

html:

<button onclick="myFunction()">Click Me</button>

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

js:

function myFunction() {
var x = document.getElementById('myDIV');
if (x.style.display === 'none') {
x.style.display = 'block';
} else {
x.style.display = 'none';
}
}

如有任何帮助,我们将不胜感激!

最佳答案

解决方案很简单:隐藏 div。

<div id="myDIV" style="display:none"> 
This is my DIV element.
</div>

如果你将它隐藏在 css 中会更酷:

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

这在你的 CSS 中:

#myDIV {
display: none;
}

关于javascript - 切换 - 隐藏和显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44662502/

25 4 0
文章推荐: javascript - 通过 highcharts 在 django 中绘制饼图
文章推荐: javascript - 在
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com