>웹 프론트엔드 >HTML 튜토리얼 >同一个表单,根据单击的按钮跳转到不同的页面_html/css_WEB-ITnose

同一个表单,根据单击的按钮跳转到不同的页面_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 11:43:192226검색

<html>	<head>		<title>登陆界面</title>	</head>	<body >		<form action="SignIn" method="Get">									用户:<input type="text" name="username"><br/>			密码:<input type="password" name="password"><br/>									<input type="submit" name="sign" value="登陆">			<input type="submit" name="login" value="注册">							</form>	</body></html>


如题,根据单击不同的按钮将表单数据传到不同的Servlet,求助如何实现?暂时还没有学习JavaScript,不会用这种方法。


回复讨论(解决方案)

<form action="SignIn" method="Get" name="form1">                                     用户:<input type="text" name="username"><br/>            密码:<input type="password" name="password"><br/>                                     <input type="submit" name="sign" value="登陆" onclick="javascript:form1.action='login.html';">            <input type="submit" name="login" value="注册" onclick="javascript:form1.action='register.html';">                             </form>

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.