我一直在尝试改变,所以我从输入表单中得到推送,但没有运气。
<form id="myform">
<input id="type" type="text" name="input">
<button onclick="myFunction()">Add number</button>
</form>
<br>
<div id="box"; style="border:1px solid black;width:150px;height:150px;overflow:auto">
</div>
<script>
var number= [];
function myFunction()
{
number.push= document.getElementById("type").value;
var x=document.getElementById("box");
x.innerHTML=number.join('<br/>');
}
</script>