我是struts的新手,我需要struts 1.2中的服务器端Java脚本验证。我做了很多谷歌搜索,但没有得到任何有用的东西
使用页面referh和页面错误的服务器端验证很容易,但我不知道如何使用Javascript提示然后显示相同的jsp页面
提前致谢
任何链接,简单示例都可能有用
答案 0 :(得分:0)
推荐你https://github.com/koorchik/LIVR 我用这么久了 如果您尝试,可以使用http://webbylab.github.io/livr-playground
答案 1 :(得分:0)
如果您想要客户端表单验证,可以尝试使用bootstrap验证器
$('#yourForm') .formValidation({ framework: 'bootstrap', icon: { valid: 'glyphicon glyphicon-ok', invalid: 'glyphicon glyphicon-remove', validating: 'glyphicon glyphicon-refresh' }, fields: { email: { validators: { notEmpty: { message: 'Please provide email address' }, emailAddress: { message: 'The value is not a valid email address' } } } } })
如果要验证电子邮件已在数据库中注册,则需要javascript Ajax调用。