質問編集履歴

1

指摘された通りにコード、エラー文はcode機能を使用しました。

2020/05/13 13:25

投稿

atsu-ori2018
atsu-ori2018

スコア5

test CHANGED
File without changes
test CHANGED
@@ -6,15 +6,13 @@
6
6
 
7
7
 
8
8
 
9
- ### index.jsの中
9
+ ``` index.js
10
-
11
-
12
10
 
13
11
  var bgImages = ['/images/top-image1.jpg', '/images/top-image2.jpg', '/images/top-image3.jpg'];
14
12
 
15
13
  var randImages = bgImages[Math.floor(Math.random() * bgImages.length)];
16
14
 
17
- $('.contents-with-text-link').css('background-image', 'url(' + randImages + ')');
15
+ $('.contents-with-text-link').css('background-image', 'url(' + randImages + ')'); ```
18
16
 
19
17
 
20
18
 
@@ -44,13 +42,13 @@
44
42
 
45
43
  }
46
44
 
47
- }
48
45
 
49
46
 
50
47
 
51
- ### エラー文 (検証のコンソールに出ています。)
52
48
 
53
49
 
50
+
51
+ ```エラー文
54
52
 
55
53
  jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1:6996 GET http://localhost:3000/images/top-image1.jpg 404 (Not Found)
56
54
 
@@ -59,6 +57,8 @@
59
57
  上記が出たので、エラー文のhttp://localhost:3000/imageをクリックすると
60
58
 
61
59
  RoutingError No route matches [GET] "/images/top-image1.jpg"
60
+
61
+ ```
62
62
 
63
63
 
64
64
 
@@ -70,11 +70,9 @@
70
70
 
71
71
 
72
72
 
73
- - /assets/images/top-image.jpg
73
+ - /assets/images/top-image1.jpg(top-image2,3も同様)
74
74
 
75
- - /top-image.jpg
75
+ - /top-image1.jpg(top-image2,3も同様)
76
-
77
-
78
76
 
79
77
  など変えてみましたが、エラー内容も変わらずでした。
80
78