如何将按钮发送到输入框?

时间:2016-06-08 01:28:33

标签: javascript button

我试图将结果从最终结果发送到新输入框,但不知道。 我尝试过几件事。

第一

for (i=0;i<res.length;i++) {
  var newbutton = document.createElement("BUTTON");
  var t = document.createTextNode("  "+res[i]);
  newbutton.appendChild(t);
  newbutton.style.marginRight = "10px";
  document.body.appendChild(newbutton);
  document.getElementById("demo").addEventListener("click",ansFunction);
  function ansFunction() {
  document.getElementByid("demo").innerHTML = "answers";
}
}

第二

for (i=0;i<res.length;i++) {
  var newbutton = document.createElement("BUTTON");
  var t = document.createTextNode("  "+res[i]);
  newbutton.appendChild(t);
  newbutton.style.marginRight = "10px";
  document.body.appendChild(newbutton);
  newbutton.onclick = "ansFunction";
  function ansFunction() {
  document.getElementByid("demo").innerHTML = "answers";
}
}

但他们不工作。 先感谢您。

1 个答案:

答案 0 :(得分:0)

您对代码的修改失败了,但方式不同。第一个失败是因为它将onclick添加到错误的元素,第二个失败,因为它没有正确设置onclick。使用以下内容代替document.body.appendChild(newbutton);之后的文字:

  var ansFunction = function() {
    document.getElementById("demo").innerHTML = "answers";
  }
  newbutton.addEventListener("click", ansFunction);
}