땀나는 애

[script] toggle _토글 클릭시 팝업 오픈 본문

쭈구리 코딩/내가 보고 쓰려고 모은 것

[script] toggle _토글 클릭시 팝업 오픈

달콤썸머 2019. 12. 31. 11:14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script>
    function showID(toggleB) {
        obj = document.getElementById(toggleB);
        if (obj.style.display == "none"obj.style.display = "inline";
        else obj.style.display = "none";
    }
</script>
<div id="content_bt"> <a href="#" onclick="showID('toggleB');">menu</a> </div>
<div id="toggleB" style="display:block">
 
    test
    </div>
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

 

Comments