How to hide/show div tags using JavaScript?

前端 未结 7 930
北海茫月
北海茫月 2020-12-17 20:44

Basically, I\'m trying to make a link that, when pressed, will hide the current body div tag and show another one in its place, unfortunately, when I click the link, the fir

7条回答
  •  轮回少年
    2020-12-17 21:04

    Use the following code:

    function hide {
    document.getElementById('div').style.display = "none";
    }
    function show {
    document.getElementById('div').style.display = "block";
    }
    

提交回复
热议问题