gpt4 book ai didi

javascript - 使用 JavaScript 切换可见性

转载 作者:行者123 更新时间:2023-11-28 21:23:05 26 4
gpt4 key购买 nike

JavaScript 新手,想知道如何使用下面的代码来切换 <div>可见性:

var toggle = {

show : function(obj) {

document.getElementById(obj).style.display = '';

},

hide : function(obj) {

document.getElementById(obj).style.display = 'none';

}

};

最佳答案

假设您有这样的 HTML:

<div id="tooltip"></div>
<span id="blah"></span>

在 JavaScript 中,您将运行以下代码:

toggle.show("tooltip"); // shows the div with an id of "tooltip"
toggle.hide("blah"); // hides the span with an id of "blah"

关于javascript - 使用 JavaScript 切换可见性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5759591/

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