본문 바로가기
Web(HTML5)

ul 태그 안에 있는 li 지우기 ( Remove ul tag child)

by swconsulting 2017. 8. 30.


        function removeSidoInternalInfoli() {

            var ul = document.getElementById('sidoInternalList');


            if (ul) {

                while (ul.firstChild) {

                    ul.removeChild(ul.firstChild);

                }

            }

        }