index.js 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. jQuery(".list_hotlp").slide({mainCell:".list_hotlp_amin ul",autoPage:true,effect:"left",autoPlay:true,vis:2,trigger:"click",interTime:5000});
  2. $('.bm_applybm').on('click',function(){
  3. var imgurl=$(this).attr('data-url')
  4. $('.Mtanc_cengt_top .title_m img').attr('src',imgurl);
  5. var hid=$(this).attr('data-hid');
  6. var source=$(this).attr('data-source');
  7. $('.Mtanc_applt input[name="hid"]').val(hid)
  8. $('.Mtanc_applt input[name="source"]').val(source)
  9. group();
  10. })
  11. $('.bm_applybm2').on('click',function(){
  12. var tit=$(this).attr('data-title')
  13. var hid=$(this).attr('data-hid');
  14. var source=$(this).attr('data-source');
  15. $('.applekf_title p.tit span.re').html(tit)
  16. $('.applekf_form input[name="hid"]').val(hid)
  17. $('.applekf_form input[name="source"]').val(source)
  18. group2();
  19. })
  20. $('.apply_gb a').on('click',function(){
  21. delbox();
  22. })
  23. $('.y_close a').on('click',function(){
  24. delbox();
  25. })
  26. function group(){
  27. iBoxWidth = $(".Mtanc_main").width();
  28. iBoxHeight = $(".Mtanc_main").height();
  29. iWinWidth = $(window).width();
  30. iWinHeight = $(window).height();
  31. $(".Mtanc_main").css("left", (iWinWidth / 2 - iBoxWidth / 2) + "px");
  32. $(".Mtanc_main").css("top", ((iWinHeight / 2 - iBoxHeight / 2)-50) + "px");
  33. $(".Mtanc_main").fadeIn();
  34. $(".applrbg").height(document.body.offsetHeight);
  35. $(".applrbg").show();
  36. }
  37. function group2(){
  38. iBoxWidth = $(".applekf").width();
  39. iBoxHeight = $(".applekf").height();
  40. iWinWidth = $(window).width();
  41. iWinHeight = $(window).height();
  42. $(".applekf").css("left", (iWinWidth / 2 - iBoxWidth / 2) + "px");
  43. $(".applekf").css("top", ((iWinHeight / 2 - iBoxHeight / 2)-50) + "px");
  44. $(".applekf").fadeIn();
  45. $(".applrbg").height(document.body.offsetHeight);
  46. $(".applrbg").show();
  47. }
  48. function delbox(){
  49. $(".Mtanc_main").fadeOut();
  50. $(".applekf").fadeOut();
  51. $(".applrbg").hide();
  52. }
  53. $(function(){
  54. //报名验证提交的调用 底下报名
  55. PublicAction.AjaxSend({CORID:'apply_submit2'/*操作ID*/});
  56. PublicAction.AjaxSend({CORID:'apply_submit3'/*操作ID*/});
  57. PublicAction.AjaxSend({CORID:'app_buttom'/*操作ID*/});
  58. $('.submit_area .apply_submit2').on('click',function(){
  59. setTimeout(function(){
  60. var _html = $('.alert-container .alert-content').html();
  61. if(_html == '提交成功'){
  62. $('.in_text').val('');
  63. }
  64. console.log(_html);
  65. },300)
  66. })
  67. $('.submit_area .apply_submit3').on('click',function(){
  68. setTimeout(function(){
  69. var _html = $('.alert-container .alert-content').html();
  70. if(_html == '提交成功'){
  71. delbox();
  72. $('.in_text').val('');
  73. }
  74. console.log(_html);
  75. },300)
  76. })
  77. $('.submit_area .app_buttom').on('click',function(){
  78. setTimeout(function(){
  79. var _html = $('.alert-container .alert-content').html();
  80. if(_html == '提交成功'){
  81. delbox();
  82. $('.app_puic').val('');
  83. }
  84. console.log(_html);
  85. },300)
  86. })
  87. })