我想知道是否可以从javascript函数传递参数(在HTML表单中)。 非常感谢您的帮助。
答案 0 :(得分:1)
如果您希望将JavaScript中的某些值添加到表单生成的POST中,请将其值弹出到隐藏字段中。
<form name="myform" method="post" onsubmit="return myFunction();">
<input type="hidden" name="calculatedTotal" value="">
<input type="submit" value="Go">
<script type="text/javascript">
function myFunction() {
document.myform.calculatedTotal.value = (100 / 4);
return true;
}
</script>