12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- jQuery(".list_hotlp").slide({mainCell:".list_hotlp_amin ul",autoPage:true,effect:"left",autoPlay:true,vis:2,trigger:"click",interTime:5000});
- $('.bm_applybm').on('click',function(){
- var imgurl=$(this).attr('data-url')
- $('.Mtanc_cengt_top .title_m img').attr('src',imgurl);
- var hid=$(this).attr('data-hid');
- var source=$(this).attr('data-source');
- $('.Mtanc_applt input[name="hid"]').val(hid)
- $('.Mtanc_applt input[name="source"]').val(source)
- group();
- })
- $('.bm_applybm2').on('click',function(){
- var tit=$(this).attr('data-title')
- var hid=$(this).attr('data-hid');
- var source=$(this).attr('data-source');
- $('.applekf_title p.tit span.re').html(tit)
- $('.applekf_form input[name="hid"]').val(hid)
- $('.applekf_form input[name="source"]').val(source)
- group2();
- })
- $('.apply_gb a').on('click',function(){
- delbox();
- })
- $('.y_close a').on('click',function(){
- delbox();
- })
- function group(){
- iBoxWidth = $(".Mtanc_main").width();
- iBoxHeight = $(".Mtanc_main").height();
- iWinWidth = $(window).width();
- iWinHeight = $(window).height();
- $(".Mtanc_main").css("left", (iWinWidth / 2 - iBoxWidth / 2) + "px");
- $(".Mtanc_main").css("top", ((iWinHeight / 2 - iBoxHeight / 2)-50) + "px");
- $(".Mtanc_main").fadeIn();
- $(".applrbg").height(document.body.offsetHeight);
- $(".applrbg").show();
- }
- function group2(){
- iBoxWidth = $(".applekf").width();
- iBoxHeight = $(".applekf").height();
- iWinWidth = $(window).width();
- iWinHeight = $(window).height();
- $(".applekf").css("left", (iWinWidth / 2 - iBoxWidth / 2) + "px");
- $(".applekf").css("top", ((iWinHeight / 2 - iBoxHeight / 2)-50) + "px");
- $(".applekf").fadeIn();
- $(".applrbg").height(document.body.offsetHeight);
- $(".applrbg").show();
- }
- function delbox(){
- $(".Mtanc_main").fadeOut();
- $(".applekf").fadeOut();
- $(".applrbg").hide();
- }
- $(function(){
- //报名验证提交的调用 底下报名
- PublicAction.AjaxSend({CORID:'apply_submit2'/*操作ID*/});
- PublicAction.AjaxSend({CORID:'apply_submit3'/*操作ID*/});
- PublicAction.AjaxSend({CORID:'app_buttom'/*操作ID*/});
- $('.submit_area .apply_submit2').on('click',function(){
- setTimeout(function(){
- var _html = $('.alert-container .alert-content').html();
- if(_html == '提交成功'){
- $('.in_text').val('');
- }
- console.log(_html);
- },300)
-
- })
- $('.submit_area .apply_submit3').on('click',function(){
- setTimeout(function(){
- var _html = $('.alert-container .alert-content').html();
- if(_html == '提交成功'){
- delbox();
- $('.in_text').val('');
- }
- console.log(_html);
- },300)
-
- })
- $('.submit_area .app_buttom').on('click',function(){
- setTimeout(function(){
- var _html = $('.alert-container .alert-content').html();
- if(_html == '提交成功'){
- delbox();
- $('.app_puic').val('');
- }
- console.log(_html);
- },300)
-
- })
- })
|