質問編集履歴
4
form2 input name 修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,11 +16,11 @@
|
|
16
16
|
|
17
17
|
<form id="form2" action="hogehoge" method="post">
|
18
18
|
|
19
|
-
<input type="text" name="h
|
19
|
+
<input type="text" name="huga1" value="data2-1">
|
20
20
|
|
21
|
-
<input type="text" name="h
|
21
|
+
<input type="text" name="huga2" value="data2-2">
|
22
22
|
|
23
|
-
<input type="text" name="h
|
23
|
+
<input type="text" name="huga3" value="data2-3">
|
24
24
|
|
25
25
|
<input type="submit" value="送信">
|
26
26
|
|
3
form2 input type 変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,11 +16,11 @@
|
|
16
16
|
|
17
17
|
<form id="form2" action="hogehoge" method="post">
|
18
18
|
|
19
|
-
<input type="
|
19
|
+
<input type="text" name="hoge2" value="data2-1">
|
20
20
|
|
21
|
-
<input type="
|
21
|
+
<input type="text" name="hoge2" value="data2-2">
|
22
22
|
|
23
|
-
<input type="
|
23
|
+
<input type="text" name="hoge2" value="data2-3">
|
24
24
|
|
25
25
|
<input type="submit" value="送信">
|
26
26
|
|
2
nameを配列へ
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
<form id="form1">
|
4
4
|
|
5
|
-
<input type="checkbox" name="hoge
|
5
|
+
<input type="checkbox" name="hoge[]" value="data1-1">
|
6
6
|
|
7
|
-
<input type="checkbox" name="hoge
|
7
|
+
<input type="checkbox" name="hoge[]" value="data1-2">
|
8
8
|
|
9
|
-
<input type="checkbox" name="hoge
|
9
|
+
<input type="checkbox" name="hoge[]" value="data1-3">
|
10
10
|
|
11
11
|
<div id="getData">GET</div>
|
12
12
|
|
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -32,6 +32,8 @@
|
|
32
32
|
|
33
33
|
上記のイメージでform1のチェックボックス選択で取得した結果valueをform2に渡してsubmitしたいと考えています。
|
34
34
|
|
35
|
-
このような実装は
|
35
|
+
このような実装は可能でしょうか?色々と調べたのですが解決に至らず質問させていただきます。
|
36
36
|
|
37
|
+
解決に至るscript等ありましたら
|
38
|
+
|
37
|
-
申し訳ありませんがご教授
|
39
|
+
申し訳ありませんがご教授願います。
|