能不能在用onclick的时候,同时把表单的值传过去?
在表单中,使用onclick的时候,能不能把表单的值也传过去?急,在线等!
<script language="javascript">
function aaa()
{
var a = document.form1.a1.value;
location.href="?a="+a;
}
</script>
<%
Response.Write(Request.QueryString("a"))
%>
<body>
<form id="form1" name="form1" method="post" action="">
<input type="text" name="a1" />
<input type="button" name="button" value="按钮" onclick="aaa()"/>
</form>
</body>
[此贴子已经被作者于2007-2-25 14:32:23编辑过]