如何用js提交struts2验证表单?

代码如下:其中checkRegister()是js的一个方法,验证用户名不能为空等功能。<formname="formR"method="post"action="... 代码如下:其中checkRegister()是js的一个方法,验证用户名不能为空等功能。<form name="formR" method="post" action="register.action"> <table align="center"> <tr> <td>&nbsp;</td> <td><s:textfield name="userName" label="用 户 名"/></td> <td><s:password name="userPassWord" label="用户密码" size="21"/></td> <td><s:password name="ConfirmPassword" label="确认密码" size="21"/></td> <td><s:radio name="userSex" list="#{1:'女',0:'男'}" label="用户性别"/></td> <td><s:textfield name="userAge" label="用户年龄"/></td> <td><s:textfield name="userEmails" label="用户邮箱"/></td> <td><s:textfield name="userQ_name" label="个性签名"/></td> <td><s:submit type="image" src="images/index/register.gif" onclick="return checkRegister();"/></td> </tr> </table> </form>能够弹出警告框,但是return false后,即是验证信息没有通过,但还是跳到了Action。应该如何修改。网上有人说,不要用submit,直接用Button,但是struts2里面好像没有button的类型。 展开
 我来答
Refuse_E
推荐于2016-06-02 · TA获得超过1324个赞
知道答主
回答量:247
采纳率:0%
帮助的人:127万
展开全部
<s:submit type="image" src="images/index/register.gif" onclick="return checkRegister();"/>
改为:
<img src="images/index/register.gif" border="0" onclick="return checkRegister();">
js中控制的时候验证通不过的时候记得return false
例如:
if(username==""){
alert('用户名不能为空');
retrun false;
}
全网天下霸屏
推荐于2018-05-01 · 知道合伙人互联网行家
全网天下霸屏
知道合伙人互联网行家
采纳数:5592 获赞数:33345
专注全网营销,品牌推广,营销推广,网站运营,自媒体运营;如果求助没有及时回复,欢迎私信。

向TA提问 私信TA
展开全部
在struts2中,验证表单方法
<input type="text" name="user.name" id="username"/>
<input type="password" name="user.password" id="password"/>
var uname = document.getElementById('username').value;//获取用户名输入的值

var upass = document.getElementById('password').value;//获取密码输入的值
if(uname == ''){
alert('用户名不能为空');
return false;
}

if(upass == ''){
alert('密码不能为空');
return false;
}

提交表单方法:
function tosubmit(){
var url="< c:out value='${cpath}'/>/publication/xxx.action?param=xxx"
document.userForm.action=url;
document.userForm.method="post";
document.userForm.submit();
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
品怀缘
2012-02-16 · TA获得超过776个赞
知道小有建树答主
回答量:862
采纳率:100%
帮助的人:642万
展开全部
把js验证,放在form表单的onsubmit事件中,就行了。。
onsubmit--当表单验证全为true时,表单才会提交,否则不提交表单
onclick--模拟点击事件,不管怎样,都会触发
个人理解。。请参考。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
科研室
2012-02-15 · 超过16用户采纳过TA的回答
知道答主
回答量:91
采纳率:0%
帮助的人:43.9万
展开全部
你把你验证的js 贴上来,或许是你的js 写的有问题
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式