質問編集履歴

1

載せたコードに誤りがあったので修正しました。

2021/11/30 06:53

投稿

vally
vally

スコア3

test CHANGED
File without changes
test CHANGED
@@ -34,9 +34,7 @@
34
34
 
35
35
  tourokubutton.value = "登録";
36
36
 
37
- var pop = document.getElementById("popup");
38
-
39
- popup.appendChild(tourokubutton);
37
+ document.body.appendChild(tourokubutton);
40
38
 
41
39
 
42
40
 
@@ -48,7 +46,9 @@
48
46
 
49
47
  tourokubuttonClick.addEventListener("click", ()=>{
50
48
 
51
- const textbox =document.getElementsById("touroku").value;
49
+ const textbox =document.getElementsByClassName('input_user');
50
+
51
+ const inputvalue = textbox.value;
52
52
 
53
53
  const namebutton = document.createElement("input");
54
54
 
@@ -56,7 +56,7 @@
56
56
 
57
57
  namebutton.type = "button";
58
58
 
59
- namebutton.value = textbox;
59
+ namebutton.value = inputvalue;
60
60
 
61
61
  document.body.appendChild(namebutton);
62
62