JSP如何响应普通按钮的事件?
代码如下:
<form method="post" action="test.jsp">
<input type="submit" name="action" value="button1">
<input type="submit" name="action" value="button2">
</form>
test.jsp
<%
String action = request.getParameter("action");
if (action.equals("button1"))
{
//do something
}
else if (action.equals("button2"))
{
//do something else
}
扩展资料
JSP的page指令
1、language属性
用于设置JSP页面使用的语言,目前只支持java语言,以后可能会支持其他语言,该属性默认值是java
2、extends属性
用于设置 JSP页面继承的 Java类,所有 JSP页面在执行之前都会被服务器解析成 Servlet,而 Servlet是由 Java类定义的,所以 JSP和 Servlet都可以继承指定的父类。该属性并不常用,而且有可能影响服务器的性能优化。
3、import 属性
用于设置 JSP导入的类包。JSP 页面可以嵌入 java代码片段,这些java代码在调用 API时需要导入相应的类包。
嗯,要用JavaScript吗?不会啊,能详细点吗?
对额 是JavaScript 其实有好多种方法
1、
2、
function aaa(){
window.location.href("aaa.jsp");
}
function check()
{
var username=document.getElementById('username').value;
var password=document.getElementById('password').value;
var reg=/^[a-z]{1,}/;
if(!username.match(reg))
{
document.getElementById("sp1").innerHTML="<font color='red'>格
式不正确</font>"
return false;
}
else if(!password.match(reg))
{
document.getElementById("sp2").innerHTML="<font color='red'格式不正确</font>"
return false;
}
}
</script>
<body>
<form id="form1" name="form1" method="post" action="request1.jsp" >
用户名:<input type="text" id="username" name="username" tabindex="2" /><span id="sp1"></span><br /><hr />
密码:<input type="password" id="password" name="password" /><span id="sp2"></span><br /><hr />
<input type="submit" value="提交" onclick="return check()" /> <!--普通按钮-->
<input type="image" name="img1" src="img/1.jpg" alt="submit" onclick="return check()" /> <!--图片按钮-->
<input type="reset" style="background-color:red; value="重置" /><!--普通按钮-->
</form>
</body></html>