Javascript - テーブル
1
Name:
Anonymous
2011-03-06 18:56
Hey, haven't been to this board before. Anyway, getting into Javascipt... And I'm trying to populate a table with the numbers 1-10, their squares, and cubes. Can someone please help me out?
What I have so far:
<script type="text/javascript">
<!--
var number = 0;
var square;
var cube;
for (var i = 0; i <= 10; i++, number++)
{
square = number * number;
cube = number * number * number;
var table_ref = document.getElementById('num_table');
var new_row = table_ref.insertRow(-1);
var new_cell = new_row.insertCell(-1);
var cell_contents = new_cell.innerHTML = number;
new_cell = new_row.insertCell(-1);
cell_contents = new_cell.innerHTML = square;
new_cell = new_row.insertCell(-1);
cell_content = new_cell.innerHTML = cube;
}
// -->
</script>
With this in <body>:
<table id="num_table" border="5" width="50%"
summary="Numbers, Their Squares & Cubes">
<thead>
<tr>
<th>Number</th>
<th>Square</th>
<th>Cube</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
Tried writing the script a few different ways with no luck. Didn't really want to use variables to insert rows/cells but most of the examples I've seen do it, so eh... Thanks in advance!
2
Name:
Anonyous
2011-03-06 19:10
Please put the code in the [code] tags in the future!
3
Name:
Anonyous
2011-03-06 19:10
Please put the code in the [code] tags in the future!
4
Name:
Anonyous
2011-03-06 19:10
Please put the code in the [code] tags in the future!
5
Name:
Anonyous
2011-03-06 19:10
Please put the code in the [code] tags in the future!
6
Name:
Anonyous
2011-03-06 19:10
Please put the code in the [code] tags in the future!
7
Name:
Anonyous
2011-03-06 19:10
Please put the code in the [code] tags in the future!
8
Name:
Anonyous
2011-03-06 19:10
Please put the code in the [code] tags in the future!
9
Name:
Anonyous
2011-03-06 19:11
Please put the code in the [code] tags in the future!
10
Name:
Anonyous
2011-03-06 19:11
Please put the code in the [code] tags in the future!
11
Name:
Anonyous
2011-03-06 19:11
Please put the code in the [code] tags in the future!
12
Name:
Anonyous
2011-03-06 19:11
Please put the code in the [code] tags in the future!
13
Name:
Anonyous
2011-03-06 19:11
Please put the code in the [code] tags in the future!
14
Name:
Anonyous
2011-03-06 19:11
Please put the code in the [code] tags in the future!
15
Name:
Anonyous
2011-03-06 19:11
Please put the code in the [code] tags in the future!
16
Name:
Anonyous
2011-03-06 19:11
Please put the code in the [code] tags in the future!
17
Name:
Anonyous
2011-03-06 19:11
Please put the code in the [code] tags in the future!
18
Name:
Anonyous
2011-03-06 19:11
Please put the code in the [code] tags in the future!
19
Name:
Anonyous
2011-03-06 19:12
Please put the code in the [code] tags in the future!
20
Name:
Anonyous
2011-03-06 19:12
Please put the code in the [code] tags in the future!
21
Name:
Anonyous
2011-03-06 19:12
Please put the code in the [code] tags in the future!
22
Name:
Anonyous
2011-03-06 19:12
Please put the code in the [code] tags in the future!
23
Name:
Anonyous
2011-03-06 19:12
Please put the code in the [code] tags in the future!
24
Name:
Anonyous
2011-03-06 19:12
Please put the code in the [code] tags in the future!
25
Name:
Anonyous
2011-03-06 19:12
Please put the code in the [code] tags in the future!
26
Name:
Anonyous
2011-03-06 19:12
Please put the code in the [code] tags in the future!
27
Name:
Anonyous
2011-03-06 19:12
Please put the code in the [code] tags in the future!
28
Name:
Anonyous
2011-03-06 19:13
Please put the code in the [code] tags in the future!
29
Name:
Anonyous
2011-03-06 19:13
Please put the code in the [code] tags in the future!
30
Name:
Anonyous
2011-03-06 19:13
Please put the code in the [code] tags in the future!
31
Name:
Anonyous
2011-03-06 19:13
Please put the code in the [code] tags in the future!
32
Name:
Anonyous
2011-03-06 19:13
Please put the code in the [code] tags in the future!
33
Name:
Anonyous
2011-03-06 19:13
Please put the code in the [code] tags in the future!
34
Name:
Anonyous
2011-03-06 19:13
Please put the code in the [code] tags in the future!
35
Name:
Anonyous
2011-03-06 19:13
Please put the code in the [code] tags in the future!
36
Name:
Anonyous
2011-03-06 19:13
Please put the code in the [code] tags in the future!
37
Name:
Anonyous
2011-03-06 19:13
Please put the code in the [code] tags in the future!
38
Name:
Anonyous
2011-03-06 19:14
Please put the code in the [code] tags in the future!
39
Name:
Anonyous
2011-03-06 19:14
Please put the code in the [code] tags in the future!
40
Name:
Anonyous
2011-03-06 19:14
Please put the code in the [code] tags in the future!
41
Name:
Anonyous
2011-03-06 19:14
Please put the code in the [code] tags in the future!
42
Name:
Anonyous
2011-03-06 19:14
Please put the code in the [code] tags in the future!
43
Name:
Anonyous
2011-03-06 19:14
Please put the code in the [code] tags in the future!
44
Name:
Anonyous
2011-03-06 19:14
Please put the code in the [code] tags in the future!
45
Name:
Anonyous
2011-03-06 19:14
Please put the code in the [code] tags in the future!
46
Name:
Anonyous
2011-03-06 19:14
Please put the code in the [code] tags in the future!
47
Name:
Anonyous
2011-03-06 19:15
Please put the code in the [code] tags in the future!
48
Name:
Anonyous
2011-03-06 19:15
Please put the code in the [code] tags in the future!
49
Name:
Anonyous
2011-03-06 19:15
Please put the code in the [code] tags in the future!
50
Name:
Anonyous
2011-03-06 19:15
Please put the code in the [code] tags in the future!
51
Name:
Anonyous
2011-03-06 19:15
Please put the code in the [code] tags in the future!
52
Name:
Anonyous
2011-03-06 19:15
Please put the code in the [code] tags in the future!
53
Name:
Anonyous
2011-03-06 19:15
Please put the code in the [code] tags in the future!
54
Name:
Anonyous
2011-03-06 19:15
Please put the code in the [code] tags in the future!
55
Name:
Anonyous
2011-03-06 19:15
Please put the code in the [code] tags in the future!
56
Name:
Anonyous
2011-03-06 19:15
Please put the code in the [code] tags in the future!
57
Name:
Anonyous
2011-03-06 19:16
Please put the code in the [code] tags in the future!
58
Name:
Anonyous
2011-03-06 19:16
Please put the code in the [code] tags in the future!
59
Name:
Anonyous
2011-03-06 19:16
Please put the code in the [code] tags in the future!
60
Name:
Anonyous
2011-03-06 19:16
Please put the code in the [code] tags in the future!
61
Name:
Anonyous
2011-03-06 19:16
Please put the code in the [code] tags in the future!
62
Name:
Anonyous
2011-03-06 19:16
Please put the code in the [code] tags in the future!
63
Name:
Anonyous
2011-03-06 19:16
Please put the code in the [code] tags in the future!
64
Name:
Anonyous
2011-03-06 19:16
Please put the code in the [code] tags in the future!
65
Name:
Anonyous
2011-03-06 19:16
Please put the code in the [code] tags in the future!
66
Name:
Anonyous
2011-03-06 19:17
Please put the code in the [code] tags in the future!
67
Name:
Anonyous
2011-03-06 19:17
Please put the code in the [code] tags in the future!
68
Name:
Anonyous
2011-03-06 19:17
Please put the code in the [code] tags in the future!
69
Name:
Anonyous
2011-03-06 19:17
Please put the code in the [code] tags in the future!
70
Name:
Anonyous
2011-03-06 19:17
Please put the code in the [code] tags in the future!
71
Name:
Anonyous
2011-03-06 19:17
Please put the code in the [code] tags in the future!
72
Name:
Anonyous
2011-03-06 19:17
Please put the code in the [code] tags in the future!
73
Name:
Anonyous
2011-03-06 19:17
Please put the code in the [code] tags in the future!
74
Name:
Anonyous
2011-03-06 19:17
Please put the code in the [code] tags in the future!
75
Name:
Anonyous
2011-03-06 19:17
Please put the code in the [code] tags in the future!
76
Name:
Anonyous
2011-03-06 19:18
Please put the code in the [code] tags in the future!
77
Name:
Anonyous
2011-03-06 19:18
Please put the code in the [code] tags in the future!
78
Name:
Anonyous
2011-03-06 19:18
Please put the code in the [code] tags in the future!
79
Name:
Anonyous
2011-03-06 19:18
Please put the code in the [code] tags in the future!
80
Name:
Anonyous
2011-03-06 19:18
Please put the code in the [code] tags in the future!
81
Name:
Anonyous
2011-03-06 19:18
Please put the code in the [code] tags in the future!
82
Name:
Anonyous
2011-03-06 19:18
Please put the code in the [code] tags in the future!
83
Name:
Anonyous
2011-03-06 19:18
Please put the code in the [code] tags in the future!
84
Name:
Anonyous
2011-03-06 19:18
Please put the code in the [code] tags in the future!
85
Name:
Anonyous
2011-03-06 19:19
Please put the code in the [code] tags in the future!
86
Name:
Anonyous
2011-03-06 19:19
Please put the code in the [code] tags in the future!
87
Name:
Anonyous
2011-03-06 19:19
Please put the code in the [code] tags in the future!
88
Name:
Anonyous
2011-03-06 19:19
Please put the code in the [code] tags in the future!
89
Name:
Anonyous
2011-03-06 19:19
Please put the code in the [code] tags in the future!
90
Name:
Anonyous
2011-03-06 19:19
Please put the code in the [code] tags in the future!
91
Name:
Anonyous
2011-03-06 19:19
Please put the code in the [code] tags in the future!
92
Name:
Anonyous
2011-03-06 19:19
Please put the code in the [code] tags in the future!
93
Name:
Anonyous
2011-03-06 19:19
Please put the code in the [code] tags in the future!
94
Name:
Anonyous
2011-03-06 19:19
Please put the code in the [code] tags in the future!
95
Name:
Anonyous
2011-03-06 19:20
Please put the code in the [code] tags in the future!
96
Name:
Anonyous
2011-03-06 19:20
Please put the code in the [code] tags in the future!
97
Name:
Anonyous
2011-03-06 19:20
Please put the code in the [code] tags in the future!
98
Name:
Anonyous
2011-03-06 19:20
Please put the code in the [code] tags in the future!
99
Name:
Anonyous
2011-03-06 19:20
Please put the code in the [code] tags in the future!
100
Name:
Anonymous
2011-03-06 19:20
101
Name:
Anonyous
2011-03-06 19:20
Please put the code in the [code] tags in the future!
102
Name:
Anonyous
2011-03-06 19:20
Please put the code in the [code] tags in the future!
103
Name:
Anonyous
2011-03-06 19:20
Please put the code in the [code] tags in the future!
104
Name:
Anonyous
2011-03-06 19:20
Please put the code in the [code] tags in the future!
105
Name:
Anonyous
2011-03-06 19:21
Please put the code in the [code] tags in the future!
106
Name:
Anonyous
2011-03-06 19:21
Please put the code in the [code] tags in the future!
107
Name:
Anonyous
2011-03-06 19:21
Please put the code in the [code] tags in the future!
108
Name:
Anonyous
2011-03-06 19:21
Please put the code in the [code] tags in the future!
109
Name:
Anonyous
2011-03-06 19:21
Please put the code in the [code] tags in the future!
110
Name:
Anonyous
2011-03-06 19:21
Please put the code in the [code] tags in the future!
111
Name:
Anonyous
2011-03-06 19:21
Please put the code in the [code] tags in the future!
112
Name:
Anonyous
2011-03-06 19:21
Please put the code in the [code] tags in the future!
113
Name:
Anonyous
2011-03-06 19:21
Please put the code in the [code] tags in the future!
114
Name:
Anonyous
2011-03-06 19:21
Please put the code in the [code] tags in the future!
115
Name:
Anonyous
2011-03-06 19:22
Please put the code in the [code] tags in the future!
116
Name:
Anonyous
2011-03-06 19:22
Please put the code in the [code] tags in the future!
117
Name:
Anonyous
2011-03-06 19:22
Please put the code in the [code] tags in the future!
118
Name:
Anonyous
2011-03-06 19:22
Please put the code in the [code] tags in the future!
119
Name:
Anonyous
2011-03-06 19:22
Please put the code in the [code] tags in the future!
120
Name:
Anonyous
2011-03-06 19:22
Please put the code in the [code] tags in the future!
121
Name:
Anonyous
2011-03-06 19:22
Please put the code in the [code] tags in the future!
122
Name:
Anonyous
2011-03-06 19:22
Please put the code in the [code] tags in the future!
123
Name:
Anonyous
2011-03-06 19:22
Please put the code in the [code] tags in the future!
124
Name:
Anonyous
2011-03-06 19:23
Please put the code in the [code] tags in the future!
125
Name:
Anonyous
2011-03-06 19:23
Please put the code in the [code] tags in the future!
126
Name:
Anonyous
2011-03-06 19:23
Please put the code in the [code] tags in the future!
127
Name:
Anonyous
2011-03-06 19:23
Please put the code in the [code] tags in the future!
128
Name:
Anonyous
2011-03-06 19:23
Please put the code in the [code] tags in the future!
129
Name:
Anonyous
2011-03-06 19:23
Please put the code in the [code] tags in the future!
130
Name:
Anonyous
2011-03-06 19:23
Please put the code in the [code] tags in the future!
131
Name:
Anonyous
2011-03-06 19:23
Please put the code in the [code] tags in the future!
132
Name:
Anonyous
2011-03-06 19:23
Please put the code in the [code] tags in the future!
133
Name:
Anonyous
2011-03-06 19:23
Please put the code in the [code] tags in the future!
134
Name:
Anonyous
2011-03-06 19:24
Please put the code in the [code] tags in the future!
135
Name:
Anonyous
2011-03-06 19:24
Please put the code in the [code] tags in the future!
136
Name:
Anonyous
2011-03-06 19:24
Please put the code in the [code] tags in the future!
137
Name:
Anonyous
2011-03-06 19:24
Please put the code in the [code] tags in the future!
138
Name:
Anonyous
2011-03-06 19:24
Please put the code in the [code] tags in the future!
139
Name:
Anonyous
2011-03-06 19:24
Please put the code in the [code] tags in the future!
140
Name:
Anonyous
2011-03-06 19:24
Please put the code in the [code] tags in the future!
141
Name:
Anonyous
2011-03-06 19:24
Please put the code in the [code] tags in the future!
142
Name:
Anonyous
2011-03-06 19:24
Please put the code in the [code] tags in the future!
143
Name:
Anonyous
2011-03-06 19:25
Please put the code in the [code] tags in the future!
144
Name:
Anonyous
2011-03-06 19:25
Please put the code in the [code] tags in the future!
145
Name:
Anonyous
2011-03-06 19:25
Please put the code in the [code] tags in the future!
146
Name:
Anonyous
2011-03-06 19:25
Please put the code in the [code] tags in the future!
147
Name:
Anonyous
2011-03-06 19:25
Please put the code in the [code] tags in the future!
148
Name:
Anonyous
2011-03-06 19:25
Please put the code in the [code] tags in the future!
149
Name:
Anonyous
2011-03-06 19:25
Please put the code in the [code] tags in the future!
150
Name:
Anonyous
2011-03-06 19:25
Please put the code in the [code] tags in the future!
151
Name:
Anonyous
2011-03-06 19:25
Please put the code in the [code] tags in the future!
152
Name:
Anonyous
2011-03-06 19:25
Please put the code in the [code] tags in the future!
153
Name:
Anonyous
2011-03-06 19:26
Please put the code in the [code] tags in the future!
154
Name:
Anonyous
2011-03-06 19:26
Please put the code in the [code] tags in the future!
155
Name:
Anonyous
2011-03-06 19:26
Please put the code in the [code] tags in the future!
156
Name:
Anonyous
2011-03-06 19:26
Please put the code in the [code] tags in the future!
157
Name:
Anonyous
2011-03-06 19:26
Please put the code in the [code] tags in the future!
158
Name:
Anonyous
2011-03-06 19:26
Please put the code in the [code] tags in the future!
159
Name:
Anonyous
2011-03-06 19:26
Please put the code in the [code] tags in the future!
160
Name:
Anonyous
2011-03-06 19:26
Please put the code in the [code] tags in the future!
161
Name:
Anonyous
2011-03-06 19:26
Please put the code in the [code] tags in the future!
162
Name:
Anonyous
2011-03-06 19:27
Please put the code in the [code] tags in the future!
163
Name:
Anonyous
2011-03-06 19:27
Please put the code in the [code] tags in the future!
164
Name:
Anonyous
2011-03-06 19:27
Please put the code in the [code] tags in the future!
165
Name:
Anonyous
2011-03-06 19:27
Please put the code in the [code] tags in the future!
166
Name:
Anonyous
2011-03-06 19:27
Please put the code in the [code] tags in the future!
167
Name:
Anonyous
2011-03-06 19:27
Please put the code in the [code] tags in the future!
168
Name:
Anonyous
2011-03-06 19:27
Please put the code in the [code] tags in the future!
169
Name:
Anonyous
2011-03-06 19:27
Please put the code in the [code] tags in the future!
170
Name:
Anonyous
2011-03-06 19:27
Please put the code in the [code] tags in the future!
171
Name:
Anonyous
2011-03-06 19:27
Please put the code in the [code] tags in the future!
172
Name:
Anonyous
2011-03-06 19:28
Please put the code in the [code] tags in the future!
173
Name:
Anonyous
2011-03-06 19:28
Please put the code in the [code] tags in the future!
174
Name:
Anonymous
2011-03-06 19:28
fuck you faggot
175
Name:
Anonymous
2011-03-06 20:37
Hax my anus in the future!