|
@@ -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");
|
|
|
+ }
|
|
|
}
|
|
|
});
|