我需要发送一个带有表单的javascript函数返回的变量。
<form name="RegForm" method="post" action="/validate_accountinfo.php" onsubmit="send()">
</form>
function send()
{
var number = 5;
return number;
}
在validate_accountinfo.php中,我想返回函数的值。怎么做?
答案 0 :(得分:1)
在表单中放置一个隐藏字段,并在javascript函数中设置其值。
隐藏字段:
<input type="hidden" id="hdnNumber">
JavaScript的:
function send(){
var number = 5;
document.getElementById("hdnNumber").value = number;
}
答案 1 :(得分:0)
在表单中添加<input hidden id="thevalue" name="thevalue" />
,使用javascript设置其值,然后提交表单。
<form id="RegForm" name="RegForm" method="post" action="/validate_accountinfo.php" onsubmit="send()">
<input hidden id="thevalue" name="thevalue" />
</form>
<script type="text/javascript">
function send()
{
var number = 5;
return number;
}
document.getElementById('thevalue').value = send();
document.getElementById('RegForm').submit();
</script>
答案 2 :(得分:0)
创建一个<input type="hidden" id="field" />
并使用jQuery更新它的值。
$("#field").attr({value: YourValue });
答案 3 :(得分:0)
添加隐藏的输入并在发送前填充它。请务必指定name=
属性。
<form name="RegForm" method="post" action="/validate_accountinfo.php" onsubmit="send()">
<input type="hidden" name="myvalue"/>
</form>
function send()
{
var number = 5;
// jQuery
$('input[name=myvalue]').val( number )
return true;
}