質問編集履歴
5
内容の編集
title
CHANGED
File without changes
|
body
CHANGED
@@ -17,16 +17,7 @@
|
|
17
17
|
|
18
18
|
*html
|
19
19
|
<body>
|
20
|
-
|
20
|
+
|
21
|
-
<thead>
|
22
|
-
<tr>
|
23
|
-
<th>年</th>
|
24
|
-
<th>名前</th>
|
25
|
-
<th>読み</th>
|
26
|
-
</tr>
|
27
|
-
</thead>
|
28
|
-
<tbody></tbody>
|
29
|
-
</table>
|
30
21
|
</body>
|
31
22
|
```
|
32
23
|
|
4
内容の修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -20,6 +20,7 @@
|
|
20
20
|
<table id="sampleTable" class="tablesorter">
|
21
21
|
<thead>
|
22
22
|
<tr>
|
23
|
+
<th>年</th>
|
23
24
|
<th>名前</th>
|
24
25
|
<th>読み</th>
|
25
26
|
</tr>
|
3
内容の修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
<table id="sampleTable" class="tablesorter">
|
21
21
|
<thead>
|
22
22
|
<tr>
|
23
|
-
<th>
|
23
|
+
<th>名前</th>
|
24
24
|
<th>読み</th>
|
25
25
|
</tr>
|
26
26
|
</thead>
|
2
内容の追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -16,18 +16,6 @@
|
|
16
16
|
});
|
17
17
|
|
18
18
|
*html
|
19
|
-
<!DOCTYPE html>
|
20
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
21
|
-
<head>
|
22
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
23
|
-
<title>List</title>
|
24
|
-
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
|
25
|
-
|
26
|
-
<link rel="stylesheet" href="css/styles.css" type="text/css" media="print, projection, screen" />
|
27
|
-
|
28
|
-
<script type="text/javascript" src="jquery/jquery.tablesorter.min.js"></script>
|
29
|
-
<script type="text/javascript" src="js/script.js"></script>
|
30
|
-
</head>
|
31
19
|
<body>
|
32
20
|
<table id="sampleTable" class="tablesorter">
|
33
21
|
<thead>
|
@@ -39,7 +27,6 @@
|
|
39
27
|
<tbody></tbody>
|
40
28
|
</table>
|
41
29
|
</body>
|
42
|
-
</html>
|
43
30
|
```
|
44
31
|
|
45
32
|
・tabelのカラムは「年」「名前」「読み」にしたい
|
1
内容の追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -14,6 +14,32 @@
|
|
14
14
|
{"年":"2020", "名前":"日本", "読み":"にほん"}
|
15
15
|
});
|
16
16
|
});
|
17
|
+
|
18
|
+
*html
|
19
|
+
<!DOCTYPE html>
|
20
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
21
|
+
<head>
|
22
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
23
|
+
<title>List</title>
|
24
|
+
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
|
25
|
+
|
26
|
+
<link rel="stylesheet" href="css/styles.css" type="text/css" media="print, projection, screen" />
|
27
|
+
|
28
|
+
<script type="text/javascript" src="jquery/jquery.tablesorter.min.js"></script>
|
29
|
+
<script type="text/javascript" src="js/script.js"></script>
|
30
|
+
</head>
|
31
|
+
<body>
|
32
|
+
<table id="sampleTable" class="tablesorter">
|
33
|
+
<thead>
|
34
|
+
<tr>
|
35
|
+
<th>都道府県名</th>
|
36
|
+
<th>読み</th>
|
37
|
+
</tr>
|
38
|
+
</thead>
|
39
|
+
<tbody></tbody>
|
40
|
+
</table>
|
41
|
+
</body>
|
42
|
+
</html>
|
17
43
|
```
|
18
44
|
|
19
45
|
・tabelのカラムは「年」「名前」「読み」にしたい
|