일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- #binary
- html id
- mac terminal command
- #C++ 연산자함수오버로딩
- html multimedia
- git flow
- #C++ has~a
- #3차원배열
- #android activity
- html youtube
- html charset
- border-box
- html5 new tag
- #bubbleSort
- docker example
- html object
- #성적관리프로그램
- #CallByAddress
- #2차원배열
- relative path
- 하이퍼레저패브릭
- html video
- #자바상속#자바이즈어#is~a
- 토큰경제
- #다차원포인터
- html plug-in
- html code
- hyperledger transaction
- #1차원배열
- #JAVASCRIPT
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 |