Javascript

자바스크립트로 태그 추가

바리새인 2021. 2. 10. 08:48
        boxWidth = document.createElement('input')
        boxWidth.setAttribute('type','text')
        boxWidth.setAttribute('id','boxWidth')
        boxWidth.setAttribute('value','20')
        boxSize = document.getElementById('boxSize')
        boxSize.append(boxWidth)