0731-87023061

咨询电话:0731-87023061
密码
验证码
以下内容与「sk体育官方网站常用功能
可按栏目扩展阅读相关条目
硕士招生
本站按公开材料组织页面
需要原文时请核对应栏目发布页
博士招生
若从搜索引擎进入
可先确认当前栏目名称
网上报名
再按需打开相关阅读
学校政策 · 博士招生简章 · 更多
导师信息
咨询电话:0731-87023061
湖南省长沙市开福区sk体育官方网站常
用户名
  • 密码
  • 验证码
本站按公开材料组织页面 需要原文时请核对应栏目发布页

更多内容

以下内容与「sk体育官方网站常用功能」同属公开资讯,可按栏目扩展阅读相关条目。

本站按公开材料组织页面。需要原文时请核对应栏目发布页。

若从搜索引擎进入,可先确认当前栏目名称,再按需打开相关阅读。

快速通道

学校政策 · 博士招生简章 · 更多内容 · 数据发布 · 了解更多

如从搜索进入本页,可先确认栏目名称,再按相关阅读扩展浏览。
' + '
' + '
' + '
' + '' + '
' + collegeName + '
' + '
' + '
可先确认当前栏目名称' + '
' + '
' + '
' + '
' + collegeInfo + '
' + // '
再按需打开相关阅读
' + '' + '
' + '
' + '
' + '
'; } document.getElementById("college").innerHTML = content; } } }) } var swiper3 = new Swiper(".main3_bk .swiper", { autoHeight: true, effect: 'silder', speed: 1000, loop: true, slidesPerView: 3, spaceBetween: 0, loopAdditionalSlides: 1, autoplay: { delay: 5000, disableOnInteraction: false, //pauseOnMouseEnter: true, }, navigation: { nextEl: '.main3_bk .swiper-button-next', prevEl: '.main3_bk .swiper-button-prev', }, pagination: { el: ".main3_bk .swiper-pagination", clickable :true, }, observer: true, observeSlideChildren: true, observeParents: true, breakpointsInverse: true, observeParents: true, breakpointsInverse: true, breakpoints: { //当宽度大于等于320 320: { autoHeight: false, slidesPerView: 1, spaceBetween: 0, centeredSlides: true, effect: 'coverflow', }, 767: { autoHeight: false, slidesPerView: 2, spaceBetween: 0, centeredSlides: true, effect: 'silder', }, 999: { slidesPerView: 3, spaceBetween: 0, centeredSlides: false, }, } }); window.onload = function () { // $('.left_list').find('ul').each(function () { // $(this).find('li').eq(0).addClass('click'); // }); // $('.left_list li').hover(function () { // $(this).addClass('click'); // $(this).siblings('li').removeClass('click'); // }); setTimeout(function() { swiper3.init(); }, 1000); var swiper4 = new Swiper(".main4_bk .swiper", { autoHeight: true, effect: 'silder', speed: 1000, loop: true, autoplay: { delay: 3000, disableOnInteraction: false, //pauseOnMouseEnter: true, }, navigation: { nextEl: '.main4_bk .swiper-button-next', prevEl: '.main4_bk .swiper-button-prev', }, pagination: { el: ".main4_bk .swiper-pagination", clickable: true, }, //observer: true, observeParents: true, breakpointsInverse: true, }); } $(document).ready(function () { // 动画 wow = new WOW( { animateClass: 'animated', offset: 20 } ); wow.init(); }); $(function () { // 初始化SDAPP new SDAPP({ "menu": { type: "aside" } }); }); $(document).on("click", '#baoming', function (event) { event.preventDefault(); $(".baoming_box").fadeIn(); }); $(document).on("click", '.baoming_box .close', function (event) { event.preventDefault(); $(".baoming_box").fadeOut(); }); $(document).on("click", '.baoming_box .baoming_btn1, .baoming_box .baoming_btn2', function (event) { $(".baoming_box").fadeOut(); }); function openUrl(url) { // window.locations.href = url; window.open(url, '_blank'); } function removeHTMLTag(str) { return str.replace(/<[^>]*>/g, ''); } function optimizeText(str) { str = removeHTMLTag(str); str = str.replace(/( | )*\n/g, '\n'); //去除行尾空白 str = str.replace(/\n(\s| | )*\r/g, '\n'); //去除多余空行 str = str.replace(/ /ig, '');//去掉  return str; } //登录start function login() { var errorMsg = ""; var username = document.getElementById("username"); var password = document.getElementById("password"); var VerificationCode = document.getElementById("VerificationCode"); var validateCode = "null"; if (!VerificationCode.value || VerificationCode.value == '') { errorMsg += " 验证码不能为空!"; //createCode();//刷新验证码 } if (!username.value) { errorMsg += " 用户名不能为空!"; } if (!password.value) { errorMsg += " 密码不能为空!"; } if (errorMsg != "") { $(".login_info").html(errorMsg); $(".login_info").show(); } else { $(".login_info").show(); //$(".login_info").html(" 正在登录中..."); /* var codetrue; var inputCode = document.getElementById("input").value.toUpperCase(); //取得输入的验证码并转化为大写 if(inputCode.length <= 0) { //若输入的验证码长度为0 codetrue = false; alert("请输入验证码!"); //则弹出请输入验证码 }else if(inputCode != code ) { //若输入的验证码与产生的验证码不一致时 codetrue = false; alert("验证码输入错误!@_@"); //则弹出验证码输入错误 createCode();//刷新验证码 document.getElementById("input").value = "";//清空文本框 }else { //输入正确时 codetrue = true; // alert("合格!^-^"); } */ //登录处理 $.post("/system/login.json", {"username": username.value, "password": password.value, "VerificationCode": VerificationCode.value}, function (result) { if (result == null || result.operFlag == "E") { //alert(result.message); $(".login_info").html("  " + result.message); //document.getElementById("input").value = "";//清空文本框 lk //document.getElementById("username").value = ""; //document.getElementById("password").value = ""; // createCode();//刷新验证码 document.getElementById("VerificationCode").value = "";//清空文本框 lk add //createCode();//刷新验证码 $("#img").attr("src", "/common/exclude/yzm.json?" + new Date().getTime()); return false; } if (result.operFlag == "S") { $(".login_info").html("  登录成功,正在转到主页..."); //window.locations="/index/index.view"; window.locations = "/system/layout/main.jsp"; } else { $(".login_info").html("  " + result.message); } }, "json"); } } $("#img").click(function () { $(this).attr("src", "/common/exclude/yzm.json?" + new Date().getTime()); });