質問編集履歴

1

質問の追加

2020/06/26 06:05

投稿

takuson
takuson

スコア36

test CHANGED
File without changes
test CHANGED
@@ -33,3 +33,35 @@
33
33
  ```
34
34
 
35
35
  この場合はしっかりと変わってくれました。しかし、「""」で囲わないと表示が「1」になってしまいました。
36
+
37
+ ※1つのみを変えることは解答者様のおかげでできました。
38
+
39
+
40
+
41
+
42
+
43
+ 追記
44
+
45
+ ```jsp
46
+
47
+ <c:forEach var="product" items="${productList}">
48
+
49
+
50
+
51
+ <li><a href="ProductListSelect?productId=${product.product_id}">
52
+
53
+ <img src="${product.firstImage}" align="top">
54
+
55
+ <p>${product.product_name}</p> 内容量:${product.product_contents}kg<br>
56
+
57
+ <font>${product.product_price}</font>
58
+
59
+ </a></li>
60
+
61
+ </c:forEach>
62
+
63
+ ```
64
+
65
+ 上のプログラムのように、繰り返し処理で<font>${product.product_price}</font>に対して常にカンマを付ける処理ではどうすればよいでしょうか?
66
+
67
+ 名前の通り金額が入っていて1000だと見にくいので1,000と変えたいです。