자바스크립트로 태그 추가

2021. 2. 10. 08:48Javascript

        boxWidth = document.createElement('input')
        boxWidth.setAttribute('type','text')
        boxWidth.setAttribute('id','boxWidth')
        boxWidth.setAttribute('value','20')
        boxSize = document.getElementById('boxSize')
        boxSize.append(boxWidth)