我有以下javascript函数:
function confirmaEnviar()
{
document.getElementById("data").value =clave2.value;
alert(document.getElementById("data").value);
more code here
在我检查的地方,我可以分配一个新的值 tu 数据;
数据定义如下:
<form action="client.json" method="post" name="usuario" id="usuario">
more code here
<input type="hidden" name="data" id="data" value="prueba" />
more code here
</form>
稍后在 jsp 部分:
<div><a href="javascript:void();" onclick="
javascript:if(confirmaEnviar())$('#usuario').submit();
<%
<%
more code here
String str= request.getParameter("data");
str 总是为空,你能指出我能做什么吗?
谢谢。