質問編集履歴

2

JSP修正

2020/08/30 13:06

投稿

r4_h
r4_h

スコア0

test CHANGED
File without changes
test CHANGED
@@ -68,6 +68,8 @@
68
68
 
69
69
  <head>
70
70
 
71
+ <script>
72
+
71
73
  <%
72
74
 
73
75
  Enumeration names = request.getParameterNames();
@@ -92,6 +94,8 @@
92
94
 
93
95
  }
94
96
 
97
+ </script>
98
+
95
99
  %>
96
100
 
97
101
  </head>

1

HTMLのソース追記しました。

2020/08/30 13:06

投稿

r4_h
r4_h

スコア0

test CHANGED
File without changes
test CHANGED
@@ -10,13 +10,53 @@
10
10
 
11
11
  ※補足
12
12
 
13
- HTMLから「GET」で同じパラメータを送信すると、なぜか問題なく受け取れます。
13
+ HTMLから「GET」で同じパラメータを送信すると、なぜか問題なく受け取れます。
14
14
 
15
15
 
16
16
 
17
17
 
18
18
 
19
- ### 実際のソースコード(パラメータ取得処理部分)
19
+ ### 実際のソースコード
20
+
21
+
22
+
23
+ ```HTML
24
+
25
+ <html lang="ja">
26
+
27
+ <head> <title></title> <meta http-equiv="Content-Type">
28
+
29
+ <meta http-equiv="Content-Style-Type" content="text/css">
30
+
31
+ <meta http-equiv="Content-Script-Type" content="text/javascript">
32
+
33
+ <meta http-equiv="Pragma" content="no-cache">
34
+
35
+ </head>
36
+
37
+
38
+
39
+ <body>
40
+
41
+ <form id="biz" method="post">
42
+
43
+ <input type="hidden" name="companyContractState" value="01"><br>
44
+
45
+ <input type="hidden" name="companyNmJp" value="japan">
46
+
47
+ <button type="submit" form="biz" formaction="JSPのURL">送信</button>
48
+
49
+ </form>
50
+
51
+ </body>
52
+
53
+
54
+
55
+ </html>
56
+
57
+ ```
58
+
59
+
20
60
 
21
61
  パラメータを受け取る処理はJSPのhead内に書いています。
22
62