質問編集履歴
5
内容の編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -36,25 +36,7 @@
|
|
36
36
|
|
37
37
|
<body>
|
38
38
|
|
39
|
-
|
39
|
+
|
40
|
-
|
41
|
-
<thead>
|
42
|
-
|
43
|
-
<tr>
|
44
|
-
|
45
|
-
<th>年</th>
|
46
|
-
|
47
|
-
<th>名前</th>
|
48
|
-
|
49
|
-
<th>読み</th>
|
50
|
-
|
51
|
-
</tr>
|
52
|
-
|
53
|
-
</thead>
|
54
|
-
|
55
|
-
<tbody></tbody>
|
56
|
-
|
57
|
-
</table>
|
58
40
|
|
59
41
|
</body>
|
60
42
|
|
4
内容の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,6 +42,8 @@
|
|
42
42
|
|
43
43
|
<tr>
|
44
44
|
|
45
|
+
<th>年</th>
|
46
|
+
|
45
47
|
<th>名前</th>
|
46
48
|
|
47
49
|
<th>読み</th>
|
3
内容の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,7 +42,7 @@
|
|
42
42
|
|
43
43
|
<tr>
|
44
44
|
|
45
|
-
<th>
|
45
|
+
<th>名前</th>
|
46
46
|
|
47
47
|
<th>読み</th>
|
48
48
|
|
2
内容の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -34,30 +34,6 @@
|
|
34
34
|
|
35
35
|
*html
|
36
36
|
|
37
|
-
<!DOCTYPE html>
|
38
|
-
|
39
|
-
<html xmlns="http://www.w3.org/1999/xhtml">
|
40
|
-
|
41
|
-
<head>
|
42
|
-
|
43
|
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
44
|
-
|
45
|
-
<title>List</title>
|
46
|
-
|
47
|
-
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
<link rel="stylesheet" href="css/styles.css" type="text/css" media="print, projection, screen" />
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
<script type="text/javascript" src="jquery/jquery.tablesorter.min.js"></script>
|
56
|
-
|
57
|
-
<script type="text/javascript" src="js/script.js"></script>
|
58
|
-
|
59
|
-
</head>
|
60
|
-
|
61
37
|
<body>
|
62
38
|
|
63
39
|
<table id="sampleTable" class="tablesorter">
|
@@ -80,8 +56,6 @@
|
|
80
56
|
|
81
57
|
</body>
|
82
58
|
|
83
|
-
</html>
|
84
|
-
|
85
59
|
```
|
86
60
|
|
87
61
|
|
1
内容の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -30,6 +30,58 @@
|
|
30
30
|
|
31
31
|
});
|
32
32
|
|
33
|
+
|
34
|
+
|
35
|
+
*html
|
36
|
+
|
37
|
+
<!DOCTYPE html>
|
38
|
+
|
39
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
40
|
+
|
41
|
+
<head>
|
42
|
+
|
43
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
44
|
+
|
45
|
+
<title>List</title>
|
46
|
+
|
47
|
+
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
|
48
|
+
|
49
|
+
|
50
|
+
|
51
|
+
<link rel="stylesheet" href="css/styles.css" type="text/css" media="print, projection, screen" />
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
<script type="text/javascript" src="jquery/jquery.tablesorter.min.js"></script>
|
56
|
+
|
57
|
+
<script type="text/javascript" src="js/script.js"></script>
|
58
|
+
|
59
|
+
</head>
|
60
|
+
|
61
|
+
<body>
|
62
|
+
|
63
|
+
<table id="sampleTable" class="tablesorter">
|
64
|
+
|
65
|
+
<thead>
|
66
|
+
|
67
|
+
<tr>
|
68
|
+
|
69
|
+
<th>都道府県名</th>
|
70
|
+
|
71
|
+
<th>読み</th>
|
72
|
+
|
73
|
+
</tr>
|
74
|
+
|
75
|
+
</thead>
|
76
|
+
|
77
|
+
<tbody></tbody>
|
78
|
+
|
79
|
+
</table>
|
80
|
+
|
81
|
+
</body>
|
82
|
+
|
83
|
+
</html>
|
84
|
+
|
33
85
|
```
|
34
86
|
|
35
87
|
|