일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- hyperledger transaction
- #자바상속#자바이즈어#is~a
- html object
- html code
- #C++ has~a
- relative path
- #성적관리프로그램
- html charset
- #binary
- html5 new tag
- 토큰경제
- border-box
- docker example
- #1차원배열
- #2차원배열
- #JAVASCRIPT
- #3차원배열
- #CallByAddress
- #android activity
- #bubbleSort
- #다차원포인터
- 하이퍼레저패브릭
- git flow
- html plug-in
- mac terminal command
- html multimedia
- html id
- html youtube
- html video
- #C++ 연산자함수오버로딩
Archives
- Today
- Total
A sentimental robot
onload 본문
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
32
33
34 |
<html>
<title>10.19</title>
<head>
<script language="javascript">
function make() {
var m = window.prompt("몇 명?");
for (var i = 0; i < parseInt(m); i++) {
var textBox = document.createElement("input");
var newLine = document.createElement("br");
textBox.type = "text";
document.body.appendChild(textBox);
document.body.appendChild(newLine);
}
}
</script>
</head>
<body onload="make()">
</body>
</html>
|
cs |
'Web' 카테고리의 다른 글
setTimeout 재귀함수 (0) | 2018.10.19 |
---|---|
Date (0) | 2018.10.19 |
getElementsByTagName (0) | 2018.10.19 |
Background color (0) | 2018.10.19 |
Javascript Array (0) | 2018.10.19 |