form表单不能提交空值

form表单信息

script方法

 $(document).ready(function () {
        $("#regBtn").click(function () {
 		    var idcard = $("#idcard").val();
            var stuName = $("#stuName").val();
            var phoneNum = $("#phoneNum").val();
            var company = $("#company").val();

            if(idcard == ''){

                alert("身份证不能为空");
                return false;

            }else {
                if(stuName == ''){

                    alert("用户名不能为空");
                    return false;

                }else {
                    if(phoneNum == ''){

                        alert("电话号码不能为空");
                        return false;

                    }else {
                        if(company == ''){

                            alert("公司单位不能为空");
                            return false;

                        }else {

							//ssm提交方法
							/*
                            * $.post('http://localhost:8080/student/add',$('form').serialize(),function (r) {
                            * alert($('form').serialize())
                            * if(r) {
                                 * alert("注册成功")
                                 * alert("即将跳转至登录界面")
                                 * window.location.href="./login.html"
							   	 *
                            	 *  }else {
						  *
                          *        alert("注册失败")
                          *    }
                          * },'json')
					 */
					   $('#form').submit();
                        }
                    }
                }
            } 
        })
    })

你可能感兴趣的:(form表单不能提交空值)