zsk_index.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. // 展开收起
  2. $('.m_zsk_list_box .m_zsk_list').each(function(){
  3. var ulhe=$(this).find('ul.zk_list_height').height();
  4. // console.log(ulhe);
  5. if (ulhe < 71) {
  6. $(this).find('div.m_zsk_list_zk').hide();
  7. };
  8. })
  9. $(function(){
  10. var ulheight=$('ul.zk_list_height').height();
  11. if (ulheight <72 ) {
  12. $('.m_zsk_list_zk').css({'display':'none'});
  13. };
  14. })
  15. $('.zkclick').on('click',function(){
  16. $('.m_zsk_list_xf').attr('id','');
  17. var IdZa = $(this).attr('zkid');
  18. $('.zk_list').css('height','70px');
  19. $('.sqclick').hide();
  20. $('.zkclick').show();
  21. var zk_height = $('.zk_list[zkid="'+IdZa+'"]').find('.zk_list_height').height();
  22. console.log(zk_height)
  23. $('.m_zsk_list_xf[zkid="'+IdZa+'"]').attr('id','z_index');
  24. if (zk_height > 78) {
  25. $('.zk_list[zkid="'+IdZa+'"]').css('height',zk_height);
  26. $(this).hide();
  27. $('.sqclick[zkid="'+IdZa+'"]').show();
  28. }
  29. })
  30. $('.zk_list_height').on('click','li',function(){
  31. var oid = $(this).attr('data-id')
  32. window.localStorage.setItem("id", oid);
  33. // console.log(oid)
  34. })
  35. $('.sqclick').on('click',function(){
  36. var IdZa = $(this).attr('zkid');
  37. $(this).hide();
  38. $('.zkclick[zkid="'+IdZa+'"]').show();
  39. $('.zk_list[zkid="'+IdZa+'"]').css('height','70px');
  40. setTimeout(function(){
  41. $('.m_zsk_list_xf[zkid="'+IdZa+'"]').attr('id','');
  42. },500)
  43. })
  44. // 展开收起结束
  45. // 报名
  46. PublicAction.AjaxSend(
  47. {
  48. CORID:'apply_submit', /*操作ID*/
  49. }
  50. );
  51. // 导航侧栏
  52. $(function(){
  53. $('.m_head_Navigation ').on('click',function(){
  54. $('.y_sidebar').animate({left:"0%"});
  55. })
  56. $('.y_sidebar_bg').on('click',function(){
  57. $(this).parent().animate({left:"100%"});
  58. })
  59. })
  60. $('.m_head_search_button').on('click',function(){
  61. var inptext=$('.m_head_search_input').val();
  62. var _name = '';
  63. if(inptext != ''){
  64. _name = '?name='+inptext;
  65. }
  66. window.location.href = '/knowledgebase/list'+_name;
  67. })