おはようございます。私はこれらのテキストボックスを持っており、スクリプトに沿って変数に属性である数値を書き込むときに必要です。このために、関数 Onclick = setvalue() を作成します。したがって、[OK] ボタンをクリックすると、スクリプトに沿った変数がテキスト ボックス内の対応する値に変更されます。
<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>