html表单提交数据验证
2020-12-13 01:46
标签:web 表单 html js 我们在做B/S项目开发中,经常会用到表单提交数据,在页面需要做js数据验证,简单方法如下 js部分:
在编写时,可以根据自己的实际情况,把name换成需要验证的控件ID 多个控件需要验证的话,添加多个 if (validate_required(Name, "姓名必填") == false) html部分: html表单提交数据验证,搜素材,soscw.com html表单提交数据验证 标签:web 表单 html js 原文地址:http://blog.csdn.net/houxingding/article/details/25066631
with (field) {
if (value == null || value == "")
{ alert(alerttxt); return false }
else { return true }
}
}
function validate_form(thisform) {
with (thisform) {
if (validate_required(Name, "姓名必填") == false)
{ Name.focus(); return false }
}
}
{ Name.focus(); return false }