Browse Source

熱點管理修改

Signed-off-by: jiapeng.dong <jiapeng.dong@cloudcross.com>
jiapeng.dong 9 years ago
parent
commit
ffad517eef
1 changed files with 4 additions and 5 deletions
  1. 4 5
      src/main/webapp/assets/js/back/public-head.js

+ 4 - 5
src/main/webapp/assets/js/back/public-head.js

@@ -42,11 +42,7 @@ $(function(){
 		$("#btn_otherMenuApmac").css("display","none");
 	});
 	
-	document.body.onmouseout=function(event){
-		if(event.target.id != "btn_otherMenuApmac" && event.target.id != "btn_menuApmac"){
-			$("#btn_otherMenuApmac").css("display","none");
-		}
-	}
+	
 	//鼠标划过
 	 $("#webBanner").mousemove(function(event){
 		 var left = 0; //存放left值  
@@ -67,5 +63,8 @@ $(function(){
 		if(event.target.id != "dspBanner" && event.target.id != "webBanner"){
 			$("#dspBanner").css("display","none");
 		}
+		if(event.target.id != "btn_otherMenuApmac" && event.target.id != "btn_menuApmac"){
+			$("#btn_otherMenuApmac").css("display","none");
+		}
 	}
 });