在JSP中如何响应按钮事件
<%@pagecontentType="text/html;charset=gb2312"language="java"import="java.util.*"%><ht...
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.util.*" %>
<html>
<head>
<title>无标题文档</title>
</head>
<body>
<form action="tijiao.jsp" method="post" name="form1" id="form1" >
<p align="center" >留言板</p>
<div align="center">姓名:
<input type="text" name="textfield1" />
<br/>
标题:
<input type="text" name="textfield2"/>
<br />
留言:
<textarea name="textarea" cols="20" rows="6"></textarea>
<br />
</div>
<div align="center">
<input type="submit" name="button" value="提交" />
<input type="submit" name="button" value="查看留言" />
<input type="submit" name="button" value="重置" />
</div>
</form>
<hr />
</body>
</html>
请问如何响应这三个按钮事件?(不是用JavaScript)
点击“提交”把留言保存起来,点击“查看留言”在本页中显示中留言信息,点击“重置”取消。 展开
<html>
<head>
<title>无标题文档</title>
</head>
<body>
<form action="tijiao.jsp" method="post" name="form1" id="form1" >
<p align="center" >留言板</p>
<div align="center">姓名:
<input type="text" name="textfield1" />
<br/>
标题:
<input type="text" name="textfield2"/>
<br />
留言:
<textarea name="textarea" cols="20" rows="6"></textarea>
<br />
</div>
<div align="center">
<input type="submit" name="button" value="提交" />
<input type="submit" name="button" value="查看留言" />
<input type="submit" name="button" value="重置" />
</div>
</form>
<hr />
</body>
</html>
请问如何响应这三个按钮事件?(不是用JavaScript)
点击“提交”把留言保存起来,点击“查看留言”在本页中显示中留言信息,点击“重置”取消。 展开
展开全部
如果你确实要用jsp来做,只能告诉你没办法。因为jsp在完成这个页面后,已经和你的浏览器断开了连接,所以,除非你再次发出请求,否则重建连接。
你可以将它们改成
<input type="submit" name="submit" value="提交" />
<input type="button" name="show" value="查看留言" onclick="location.replace("tijiao.jsp?it=show")"/>
<input type="reset" name="reset" value="重置" />
利用参数it判断要做什么操作。
你可以将它们改成
<input type="submit" name="submit" value="提交" />
<input type="button" name="show" value="查看留言" onclick="location.replace("tijiao.jsp?it=show")"/>
<input type="reset" name="reset" value="重置" />
利用参数it判断要做什么操作。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询