//加载 $(function () { //非负浮点数(/^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0$/) var reg = /^[1-9]\d*\.\d*|0\.\d*[1-9]\d*|0?\.0+|0$/; var learnSystem = $("#LearnSystem").val(); if (learnSystem == "" || learnSystem == null) { $("#LearnSystem").val(""); } else { if (!reg.test(learnSystem)) { $("#LearnSystem").val(""); } else { $("#LearnSystem").val(parseFloat(learnSystem).toFixed(1)); } } var score = $("#Score").val(); if (score == "" || score == null) { $("#Score").val(""); } else { if (!reg.test(score)) { $("#Score").val(""); } else { $("#Score").val(parseFloat(score).toFixed(1)); } } $("#specialtyExpander").closest("tr") .next().css("display", "") .next().css("display", "none") .next().css("display", "none") .next().css("display", "") .next().css("display", ""); $("#specialtyExpander").attr("expanded", "1"); $("#otherExpander").closest("tr") .next().css("display", "none") .next().css("display", "") .next().css("display", "none") .next().css("display", "none") .next().css("display", "") .next().css("display", ""); $("#otherExpander").attr("expanded", "1"); }); //点击收缩(专业信息) function swapSpecialty() { if ($("#specialtyExpander").attr("expanded") == "1") { $("#specialtyExpander").css("background", "url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -50px 0"); $("#specialtyExpander").closest("tr") .next().css("display", "") .next().css("display", "") .next().css("display", "") .next().css("display", "") .next().css("display", ""); $("#specialtyExpander").attr("expanded", "0"); } else { $("#specialtyExpander").css("background", "url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0"); $("#specialtyExpander").closest("tr") .next().css("display", "") .next().css("display", "none") .next().css("display", "none") .next().css("display", "") .next().css("display", ""); $("#specialtyExpander").attr("expanded", "1"); } } //点击收缩(其它信息) function swapOther() { if ($("#otherExpander").attr("expanded") == "1") { $("#otherExpander").css("background", "url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -50px 0"); $("#otherExpander").closest("tr") .next().css("display", "") .next().css("display", "") .next().css("display", "") .next().css("display", "") .next().css("display", "") .next().css("display", ""); $("#otherExpander").attr("expanded", "0"); } else { $("#otherExpander").css("background", "url('../../Content/Bowin.Control.Core/themes/metro-blue/images/tree_icons.png') no-repeat -32px 0"); $("#otherExpander").closest("tr") .next().css("display", "none") .next().css("display", "") .next().css("display", "none") .next().css("display", "none") .next().css("display", "") .next().css("display", ""); $("#otherExpander").attr("expanded", "1"); } } //保存 function NewStudentEnter_Save() { var certificatesType = $("#CertificatesType").combogridX("getValue"); var iDNumber = $.trim($("#IDNumber").val()); if (iDNumber != "") { if (certificatesType == "" || certificatesType == "-1" || certificatesType == null) { $.messager.alert("系统提示", "请选择对应的证件类型。"); return; } } var classmajorID = $("#ClassmajorID").combogridX("getValue"); var studentNo = $.trim($("#StudentNo").val()); if (studentNo != "") { if (classmajorID == "" || classmajorID == "-1" || classmajorID == null) { $.messager.alert("系统提示", "请选择对应的班级名称(学号不为空时,班级名称不能为空)。"); return; } } $(document.forms[0]).submit(); } //删除照片(单个删除) function delPhoto() { var newStudentID = $("#NewStudentID").val(); $.postWithLoading(CMS_SystemConfig.VirtualDirectoryPath + '/NewStudentEnter/DeletePhoto', { newStudentID: newStudentID }, function (data) { if (data.IsSuccess) { $.messager.alert("系统提示", data.Message); $("#imgPhoto").attr('src', ''); } else { $.messager.alert("系统提示", data.Message); } }); } //联动查询 function querySpecialty(data) { var specialtyID = $("#SpecialtyID").combogridX("getValue"); if (specialtyID == "" || specialtyID == "-1" || specialtyID == null) { $("#Code").val(""); $("#EducationID").combogridX("setValue", "-1"); $("#LearningformID").combogridX("setValue", "-1"); $("#LearnSystem").val(""); //$("#ClassmajorID").combogridX("setValue", "-1"); } else { $("#Code").val(data.Code); $("#EducationID").combogridX("setValue", data.EducationID); $("#LearningformID").combogridX("setValue", data.LearningformID); $("#LearnSystem").val(data.LearnSystem); } }