質問編集履歴

1

コードの修正

2017/05/09 00:45

投稿

hide09090909
hide09090909

スコア68

test CHANGED
File without changes
test CHANGED
@@ -22,39 +22,45 @@
22
22
 
23
23
  <head>
24
24
 
25
+
26
+
25
27
  <meta charset="utf-8">
28
+
29
+ <script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
30
+
31
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
32
+
33
+ </head>
34
+
35
+ <body>
26
36
 
27
37
 
28
38
 
29
- <table id="sample">
39
+ <pre></pre>
30
40
 
31
- <thead>
32
41
 
33
- <tr>
34
42
 
35
-
43
+ <script>
36
44
 
37
- <th>ファイル名</th>
45
+ $( function() {
38
46
 
39
- <th>作成者</th>
47
+ $( "pre" ).load( "test.txt" );
40
48
 
41
- <th>種別</th>
49
+ } );
42
50
 
43
- </thead>
51
+ </script>
44
-
45
- <tbody id="demo">
46
-
47
-
48
-
49
- </tbody>
50
-
51
- </table>
52
52
 
53
53
 
54
54
 
55
55
  </body>
56
56
 
57
57
  </html>
58
+
59
+
60
+
61
+
62
+
63
+
58
64
 
59
65
  ```
60
66