JavaScript(26)
-
자바스크립트로 태그 추가
boxWidth = document.createElement('input') boxWidth.setAttribute('type','text') boxWidth.setAttribute('id','boxWidth') boxWidth.setAttribute('value','20') boxSize = document.getElementById('boxSize') boxSize.append(boxWidth)
2021.02.10 -
자바스크립트 배열 삭제 splice(index,count)
index부터 count만큼 삭제 shapes.splice(selectedShapeIndex,1)전체 삭제const array = [ 1, 2, 3, 4, 5];array.splice(0, array.lengh);
2021.02.06