$(document).ready(function () { $('.shouye').hover(function(event) { /* Act on the event */ $('.small').hide(); }); $('.xianshi').each(function(index, element) { $(this).hover( function(){ $('.small').hide(); $(this).find('.small').show(); }, function(){ $('.small').hide(); } ) }) })