1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- // 展开收起
- $('.m_zsk_list_box .m_zsk_list').each(function(){
- var ulhe=$(this).find('ul.zk_list_height').height();
- // console.log(ulhe);
- if (ulhe < 71) {
- $(this).find('div.m_zsk_list_zk').hide();
- };
- })
- $(function(){
- var ulheight=$('ul.zk_list_height').height();
- if (ulheight <72 ) {
- $('.m_zsk_list_zk').css({'display':'none'});
- };
- })
- $('.zkclick').on('click',function(){
- $('.m_zsk_list_xf').attr('id','');
- var IdZa = $(this).attr('zkid');
- $('.zk_list').css('height','70px');
- $('.sqclick').hide();
- $('.zkclick').show();
- var zk_height = $('.zk_list[zkid="'+IdZa+'"]').find('.zk_list_height').height();
- console.log(zk_height)
- $('.m_zsk_list_xf[zkid="'+IdZa+'"]').attr('id','z_index');
- if (zk_height > 78) {
- $('.zk_list[zkid="'+IdZa+'"]').css('height',zk_height);
- $(this).hide();
-
- $('.sqclick[zkid="'+IdZa+'"]').show();
- }
- })
- $('.zk_list_height').on('click','li',function(){
- var oid = $(this).attr('data-id')
- window.localStorage.setItem("id", oid);
- // console.log(oid)
- })
- $('.sqclick').on('click',function(){
- var IdZa = $(this).attr('zkid');
- $(this).hide();
- $('.zkclick[zkid="'+IdZa+'"]').show();
- $('.zk_list[zkid="'+IdZa+'"]').css('height','70px');
- setTimeout(function(){
- $('.m_zsk_list_xf[zkid="'+IdZa+'"]').attr('id','');
- },500)
-
- })
- // 展开收起结束
- // 报名
- PublicAction.AjaxSend(
- {
- CORID:'apply_submit', /*操作ID*/
- }
- );
- // 导航侧栏
- $(function(){
- $('.m_head_Navigation ').on('click',function(){
- $('.y_sidebar').animate({left:"0%"});
- })
- $('.y_sidebar_bg').on('click',function(){
- $(this).parent().animate({left:"100%"});
- })
- })
- $('.m_head_search_button').on('click',function(){
- var inptext=$('.m_head_search_input').val();
- var _name = '';
- if(inptext != ''){
- _name = '?name='+inptext;
- }
- window.location.href = '/knowledgebase/list'+_name;
- })
|