谁有用jsp做的项目?发过邮箱136170746@qq.com。 或者回答另一个问题见...
发布网友
发布时间:2024-10-21 14:40
我来回答
共4个回答
热心网友
时间:2024-11-08 19:25
我使用的是jquery的ajax来实现功能的,使用比较方便,我会把jquery发到你的邮箱里,如果还有问题就加我QQ详谈64626680
$(function(){
$("#button1").click(function(){
$.get("newTest.do?method=test",{//这里是调用的那个action,我用的是DispatchAction
username : $("#username").val()//这里是获取页面中的id为username的标签文本框
//我这里只写了一个参数,如果还有其他参数那么就在后面继续写
},function(data,textStatus){
//这里就是一个回调函数了
if(decodeURI(data)=="e\r\n"){//如果失败就返回原页面
alert("密码错误");
}else{//成功就从这里跳转到其他页面
alert("密码正确");
window.location.href='./index.jsp';//跳转的页面
}
});
});
})
我使用的是struts1的DispatchAction
public ActionForward test(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response) throws IOException {
String username=request.getParameter("username");
request.setAttribute("username", username);
if(username.equals("1111111111")){
StringBuffer responseText = new StringBuffer();
responseText.append("s");
response.getWriter().println(responseText);//这里把111111返回到页面了
}else{
StringBuffer responseText = new StringBuffer();
responseText.append("e");
response.getWriter().println(responseText);//这里把111111返回到页面了
}
return null;//如果返回原来的页面为null
}
热心网友
时间:2024-11-08 19:27
可以应用百度Hi通知我
有时间可以解决你的问题
同样的要求也可以通知我
ES:\\6F7D97C40B10DB1CA8DF6629485ED7CF
交易提醒:预付定金是陷阱
热心网友
时间:2024-11-08 19:24
这个可以实现滴 很简单啦 要的话我给你写一个呗 呵呵呵
热心网友
时间:2024-11-08 19:27
难道你说的是ajax的效果,用ajax可以实现