style:首页
Showing
1 changed file
with
3 additions
and
3 deletions
... | @@ -65,12 +65,12 @@ function initData() { | ... | @@ -65,12 +65,12 @@ function initData() { |
65 | }) | 65 | }) |
66 | // 便民服务 | 66 | // 便民服务 |
67 | $(".convenient-service-list li").mouseover(function() { | 67 | $(".convenient-service-list li").mouseover(function() { |
68 | $(this).find('img').attr('src', $(this).find('img').attr('url')) | 68 | $(this).find('img').attr('src', $(this).find('img').attr('url')); |
69 | }) | 69 | }) |
70 | $(".convenient-service-list li").mouseout(function() { | 70 | $(".convenient-service-list li").mouseout(function() { |
71 | $(this).find('img').attr('src', $(this).find('img').attr('pre')) | 71 | $(this).find('img').attr('src', $(this).find('img').attr('pre')); |
72 | }) | 72 | }) |
73 | f (getItem('myCookie') && getItem('myCookie').username) { | 73 | if (getItem('myCookie') && getItem('myCookie').username) { |
74 | $('.login-list a').hide(); | 74 | $('.login-list a').hide(); |
75 | $('.login-list-subtitle').show(); | 75 | $('.login-list-subtitle').show(); |
76 | } | 76 | } | ... | ... |
-
Please register or sign in to post a comment