当我尝试传递一个等于文本框值的 pop_size 变量时,我遇到了问题。此变量将与文本框的值一起用于脚本中。当我单击按钮时,值会更改并更新变量的值,然后我重新加载页面并将变量设置为文本框中的值。
<form name="myform1" action="" method="get">
Input the number of populations<br />
<input type="number" name="pop" id="pop" value=5 /><br />
<input type="button" name="b1" id="b1" value="Click to set"
onClick="setValue()" /><br />
</form>
function setValue() {
var test, test1;
test=parseInt(document.getElementById('pop').value);
pop_size = test;
}