我正在尝试制作一个网页,您可以在其中单击按钮以显示和隐藏 div,我现在的问题是;
如何通过单击特定按钮隐藏所有其他 div。
代码Java:
function showHide(divId){
var theDiv = document.getElementById(divId);
if(theDiv.style.display=="none"){
theDiv.style.display="block";
}else{
theDiv.style.display="none";
}
}
代码HTML:
<div id="div" onclick="showHide('divcontent')"> This is the button. </div>
<div id="divcontent"> This is a div to hide and show. </div>
<div id="div2" onclick="showHide('divcontent2')"> This is the button. </div>
<div id="divcontent2"> This is a div to hide and show. </div>
<div id="div3" onclick="showHide('divcontent3')"> This is the button. </div>
<div id="divcontent3"> This is a div to hide and show. </div>
因此,如果您单击 div2,我希望其他人显示为隐藏。