1
<script type="text/javascript">
var id = getValue("ID");
document.write(id);
</script>    

<form action="cgi-bin/runalg.cgi" method="post" enctype="multipart/form-data">
<input type="radio" name="genome" value="E.Coli"> <i>E.Coli</i> <input type="radio" name="genome" value="Human"> Human<br> 
<input type="submit" name="submit" value="Submit"/>
<input type="reset" name="reset" value="Clear"/>
</form>

</body>

如何将 JavaScript 变量 (var id) 的值放入表单中,以便在提交时可以runalg.cgi使用$q<-param("ID")命令检索它?

4

2 回答 2

6

你可以直接写:

<script type="text/javascript">
document.write('<input type="hidden" name="ID" value="'+id+'"/>');
</script>
于 2013-06-28T12:35:28.230 回答
2

添加隐藏字段。将该字段中的值设置为 Javascript 中变量的值。

<form action="cgi-bin/runalg.cgi" method="post" enctype="multipart/form-data">
[...]
<input type="hidden" name="ID" value="default">
</form>

然后在javascript上:

<script type="text/javascript">
document.forms[0].elements["ID"].value = getValue("ID");
</script>

表格的索引可能在您的文档中有所不同。

于 2013-06-28T12:31:08.163 回答