質問編集履歴

4

情報追加

2019/02/01 06:10

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -3,51 +3,3 @@
3
3
 
4
4
 
5
5
  アドバイスよろしくお願いします。
6
-
7
-
8
-
9
- ```jquery
10
-
11
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
12
-
13
- <script type="text/javascript">
14
-
15
- $(document).on("click", ".add", function() {
16
-
17
- $(this).parent().clone(true).insertAfter($(this).parent());
18
-
19
- });
20
-
21
- $(document).on("click", ".del", function() {
22
-
23
- var target = $(this).parent();
24
-
25
- if (target.parent().children().length > 1) {
26
-
27
- target.remove();
28
-
29
- }
30
-
31
- });
32
-
33
- </script>
34
-
35
- ```
36
-
37
- ```HTML
38
-
39
- <div id="input_pluralBox">
40
-
41
- <div id="input_plural">
42
-
43
- <input type="text" class="form-control" id="sample" name="sample">
44
-
45
- <input type="button" value="+" class="add pluralBtn">
46
-
47
- <input type="button" value="-" class="del pluralBtn">
48
-
49
- </div>
50
-
51
- </div>
52
-
53
- ```

3

2019/02/01 06:10

投稿

退会済みユーザー
test CHANGED
@@ -1 +1 @@
1
- jqueryで動的に追加された入力フォーム(input)の値をpython(post)で受け取るにはどうしたら良いのでしょうか?
1
+ jqueryで動的に追加された入力フォーム(input)の値をpython(flask)で受け取るにはどうしたら良いのでしょうか?
test CHANGED
@@ -1,4 +1,4 @@
1
- フロント側、jqueryでユーザーが任意で追加、動的に生成した入力フォームの値をpythonで受け取るにはどのようにしたら良いでしょうか。
1
+ fロント側、jqueryでユーザーが任意で追加、動的に生成した入力フォームの値をpython(出来ればflask)で受け取るにはどのようにしたら良いでしょうか。
2
2
 
3
3
 
4
4
 

2

2019/01/29 03:10

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -40,7 +40,7 @@
40
40
 
41
41
  <div id="input_plural">
42
42
 
43
- <input type="text" class="form-control" placeholder="テキスト">
43
+ <input type="text" class="form-control" id="sample" name="sample">
44
44
 
45
45
  <input type="button" value="+" class="add pluralBtn">
46
46
 

1

2019/01/29 03:00

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -34,7 +34,7 @@
34
34
 
35
35
  ```
36
36
 
37
- ```ここに言語を入力
37
+ ```HTML
38
38
 
39
39
  <div id="input_pluralBox">
40
40