I'm

Developer, Designer, Photographer

GET IN TOUCH

  • Buk-gu, Busan, Republic of Korea
  • ungdoli0916@naver.com
  • Kakao ID : Ungdoli
Your message has been sent. Thank you!
(즐거웅코드) 자바스크립트 display block(보이기)/none(숨기기) 처리하기

· 즐거'웅' 코드 (Source)/HTML & CSS & JAVASCRIPT
2020. 3. 24. 20:51

반응형
JAVASCRIPT
1
2
3
4
5
6
<script>
    function test(){
        var con = document.getElementById("(아이디명)");
        con.style.display = (con.style.display != 'none') ? "none" : "block";
    }
</script>
예제 소스
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<style>
    div {
        width: 200px;
        height: 50px;
        background-color: #414144;
    }
  
    button {
        width: 200px;
        height: 50px;
    }
</style>
  
<button onclick="test()"></button>
<div id="test_obj"></div>
  
<script>
    function test(){
        var con = document.getElementById("test_obj");
        con.style.display = (con.style.display != 'none') ? "none" : "block";
    }
</script>
구현 예시
반응형