早上好。我有这些文本框,当我写一个数字时,我希望它是脚本中一个变量的属性,为此我创建了一个函数 Onclick = setvalue()。所以我希望当我单击“确定”按钮时,脚本中的变量会更改为文本框中的相应值。
<form name="myform1" id="population">
Input the number of populations<br />
<input type="number" name="pop" id="pop" value=pop /><br />
Input the number of Iterations<br />
<input type="number" name="Iterations" id="Iterations" value=totalIterations /><br />
<input type="button" name="b1" id="b1" value="Click to set" onClick="setValue()" /><br />
</form>