質問編集履歴

1

scriptタグの閉じ括弧のつけ忘れを修正しました。が、結果は変わりませんでした。

2020/03/26 17:17

投稿

quantum_drive
quantum_drive

スコア4

test CHANGED
File without changes
test CHANGED
@@ -66,9 +66,9 @@
66
66
 
67
67
  <link rel = stylesheet href = {StyleSheetFileName}>
68
68
 
69
- <script src = {JQuery331MinFileName}</script>
69
+ <script src = {JQuery331MinFileName}></script>
70
-
70
+
71
- <script src = {JQueryAutoSizeFileName}</script>
71
+ <script src = {JQueryAutoSizeFileName}></script>
72
72
 
73
73
  <script>
74
74
 
@@ -140,19 +140,15 @@
140
140
 
141
141
  ```html
142
142
 
143
- <!DOCTYPE html>
143
+ <!DOCTYPE html><html><head>
144
-
145
- <html>
146
-
147
- <head>
148
144
 
149
145
  <meta charset="utf-8">
150
146
 
151
147
  <link rel="stylesheet" href="D:\Projects\Test\Test\bin\x86\Debug\style.css">
152
148
 
153
- <script src="D:\Projects\Test\Test\bin\x86\Debug\jquery-3.3.1.min.js</script">
149
+ <script src="D:\Projects\Test\Test\bin\x86\Debug\jquery-3.3.1.min.js"></script>
154
-
150
+
155
- <script src = D:\Projects\Test\Test\bin\x86\Debug\jquery.autosize.min.js</script>
151
+ <script src="D:\Projects\Test\Test\bin\x86\Debug\jquery.autosize.min.js"></script>
156
152
 
157
153
  <script>
158
154
 
@@ -178,11 +174,13 @@
178
174
 
179
175
  <textarea></textarea>
180
176
 
181
- <input type="button" onclick="showMessage()"><!--このshowMessage()は機能します。-->
177
+ <input type="button" onclick="showMessage()">
182
-
178
+
179
+
180
+
181
+
182
+
183
- </body>
183
+ </body></html>
184
-
185
- </html>
186
184
 
187
185
  ```
188
186