Jsp单选按钮的实现<%@ page contentType="text/html; charset=GB2312" %>
<html>
<head>
<title>
jsp1
</title>
<script language="javascript" type="">
htmlradio设置默认的按钮function test()
{
for (i=0; i<document.f1.ra.length; i++)
{
if (document.f1.ra[i].checked)
str = document.f1.ra[i].value;
}
confirm(str);
location.href="jsp2.jsp?id="+str;
}
</script>
</head>
<body bgcolor="#ffffff">
<h1>
JBuilder Generated JSP
</h1>
<%!
int id=0;
%>
<form name="f1" method="post" action="jsp2.jsp">
<br><br>
<input type="radio" name="ra" value="1" />1
<input type="radio" name="ra" value="2" />2
<br />
<a href="#" οnclick="test()">连接</a>
<input type="submit" name="Submit" value="Submit">
<input type="reset" value="Reset">
</form>
</body>
</html>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论