| 123456789101112131415161718192021222324252627282930313233343536373839404142 | 
							- /*全局自适应高度*/
 
- function autoFlashHeight(){
 
-     var headerHeight = $(".header").height();
 
-     var bottomContentHeight = $(".bottom-content").height();
 
-     var toolsBar = $(".tools-bar").height();
 
-     $(".content").height($(window).height()-headerHeight);
 
-     $(".main-side").height($(window).height()-headerHeight-2);
 
-     $(".fluid-content").height($(window).height()-headerHeight-1);
 
-     $(".side-content").height($(window).height()-headerHeight );
 
-     $(".poj-list").height($(window).height()-headerHeight);
 
-     $(".form-list").height($(window).height()-headerHeight-50 );
 
-     $(".main-data-top").height($(window).height()-headerHeight-toolsBar-bottomContentHeight-2);
 
-     $(".main-data").height($(window).height()-headerHeight);
 
- };
 
- $(window).resize(autoFlashHeight);
 
- /*全局自适应高度结束*/
 
- $(function(){
 
- /*侧滑*/
 
- $(".open-sidebar").click(function(){
 
-     $(".slide-sidebar").animate({width:"800"}).addClass("open");
 
- });
 
- $("body").click(function(event){
 
-         var e = event || window.event; //浏览器兼容性
 
-         if(!$(event.target).is('a')) {
 
-             var elem = event.target || e.srcElement;
 
-             while (elem) { //循环判断至跟节点,防止点击的是div子元素
 
-                 if (elem.className == "open-sidebar" || elem.className == 'slide-sidebar open') {
 
-                     return false;
 
-                 }
 
-                 elem = elem.parentNode;
 
-             }
 
-             $(".slide-sidebar").animate({width:"0"}).removeClass("open")// 关闭处理
 
-         }
 
-     });
 
- /*侧滑*/
 
- /*工具提示*/
 
- $('*[data-toggle=tooltip]').mouseover(function() {
 
-  $(this).tooltip('show');
 
-   });
 
- /*工具提示*/
 
- });
 
 
  |