Commit 64c85212a803256630702074f1a2c5d3b5dff15e

Authored by jack
1 parent 377085db

1、修改bug

WebRoot/WEB-INF/jsp/system/index/login.jsp
... ... @@ -136,10 +136,10 @@ body{
136 136  
137 137 });
138 138  
139   - $('.history').hover(function(){
  139 + $('.history').hover(function(){ //鼠标悬停下拉框时,解绑blur事件
140 140 $("#loginname").unbind("blur");
141 141 },function(){
142   - $("#loginname").blur(function(){
  142 + $("#loginname").blur(function(){ //鼠标移出下拉框时,添加blur事件
143 143 $(".history").hide();
144 144 })
145 145 });
... ... @@ -267,7 +267,7 @@ body{
267 267 }
268 268 }});
269 269 window.top.remove.show();
270   -
  270 + $(".mb_head .close img").css("display","none");
271 271 }
272 272 //保存登录记录
273 273 function saveCookie() {
... ...