/** 鍑芥暟浣滅敤锛氳皟鐢ㄦ樉绀篺lash鍔ㄧ敾 璋冪敤鏂规硶锛屽厛鎶婅鏂囦欢宓屽叆璋冪敤鐨勯〉闈紝濡傦細 鍦ㄩ渶瑕佹彃鍏lash鐨勫湴鏂规彃鍏ヤ互涓嬩唬鐮侊細 鍙傛暟璇存槑锛歩dad锛歠lash鐨処d锛宻wfurl锛歠lash鏂囦欢鐨勮矾寰勶紝wad锛歠lash鐨勫搴︼紝had锛歠lash鐨勯珮搴︼紝swfmode锛歠lash鑳屾櫙鏄惁閫忔槑锛宻howmode锛歠lash鏄剧ず鏂瑰紡锛氶粯璁ゃ€佹棤杈规noborder銆佷弗鏍煎尮閰峞xactfit锛寁s锛氭槸鍚︽槸瑙嗛鏂囦欢锛屼笉鏄棰戝彲浠ョ暀绌� **/ function createflash(idad, swfurl, wad, had, swfmode, showmode, vs){ var str = ''; str += ''; str += ''; str += ''; str += ''; str += ''; str += ''; str += ''; str += ''; str += ''; str += ''; document.write(str); } $('.getajax').click(function(event){ event.preventdefault(); var geturl = $(this).attr('href'); $.ajax({ type:'get', url:geturl, success:function(json){ if(json.status == '1'){ layer.msg(json.msg,{time:1000},function(){ if(json.gotourl){ window.location = json.gotourl; } }); } } }) }); // 后台管理子菜单异步获取 $('#tool-bar a').click(function(event){ event.preventdefault(); if(!isshow){ showsubbar(); } var data_url = $(this).attr('href'); var title = $(this).data('title'); $('#tool-bar-sub h3 span.title').text(title); $('#tool-bar-sub ul').html('
'); $.ajax({ type:'get', url:data_url, success:function(msg){ $('#tool-bar-sub ul').html(msg); //$('#submenu-list').find('li').first().addclass('active').siblings().removeclass('active'); $('#submenu-list').find('a').click(function(){ $(this).closest('li').addclass('active').siblings().removeclass('active'); }) } }); $(this).closest('li').addclass('cur').siblings().removeclass('cur'); }); //初始化加载子菜单 $(document).ready(function() { var title = $('#tool-bar').find('a').first().data('title'); var data_url = $('#tool-bar').find('a').first().attr('href'); $('#tool-bar-sub h3 span.title').text(title); $.ajax({ type:'get', url:data_url, success:function(msg){ $('#tool-bar-sub ul').html(msg); //$('#submenu-list').find('li').first().addclass('active').siblings().removeclass('active'); $('#submenu-list').find('a').click(function(){ $(this).closest('li').addclass('active').siblings().removeclass('active'); }) } }) }); // 隐藏显示子菜单 var isshow=true; function showsubbar(){ $('#tool-bar-sub').animate({ left:'50px' },300,'easeinexpo'); $('#switch-bar').animate({ left:'180px' },300,'easeinexpo',function(){$('#switch-bar').children('a').attr('class','icon-chevron-left');}); $('#main-frame').animate({ left:'200px' },300,'easeinexpo'); isshow = true; } function hidesubbar(){ $('#tool-bar-sub').animate({ left:'-150px' },300,'easeinexpo'); $('#switch-bar').animate({ left:'50px' },300,'easeinexpo',function(){$('#switch-bar').children('a').attr('class','icon-chevron-right');}); $('#main-frame').animate({ left:'70px' },300,'easeinexpo'); isshow = false; } $('#switch-bar').click(function(){ if(isshow){ hidesubbar(); }else{ showsubbar(); } })