Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 애플
- https://rectangleapp.com
- textContent
- 클립스튜디오구매
- 객체
- 서평단
- 클립스튜디오
- 프프로로그그래래밍
- 소수점이하버리기
- 클튜
- 구독
- 맥에서 게임
- rectangleapp
- Math.floor();
- 클튜할인
- 클립스튜디오구독
- 클립스튜디오할인
- 맥
- 형변환
- 게임 맥에서
- 디자인표준계약서
- 클튜구매
- js
- form
- 아이패드
- 별찍어보기
- 구매
- 클튜구독
- querySelectAll
- 배열
Archives
- Today
- Total
duedue
리스트 뿌려주기 본문
<section>
<h2>standards revival mp3</h2>
<div id="list">
</div>
</section>
<script>
var add_zero = function(num, digit){
var num_string = String(num); //숫자를 문자열로 변환후 대입
while(num_string.length<digit){ //digit의 개수만큼
num_string = '0'+num_string; // 0을 대입, 3이면 001 결과출력
}
return num_string; // 반환
};
var songs=[
'stella by stella',
'satin doll',
'caravan',
'besame mucho',
'my favorit things',
'taking a chance on love',
'fly me to the moon',
'waltz for debby',
'willow weep for me',
'bluesette'
];
for(var i =0; i < songs.length;i++){
var paragraph = document.createElement('p'); // p를 만들어 대입
paragraph.textContent = add_zero(i+1, 2) + '. ' + songs[i]; //넘버링 처리
document.getElementById('list').appendChild(paragraph); //넣을곳 불러오기
}
</script>