hover=mouseover+mouseout
单独使用hover不能实现鼠标滑过出现模块并在模块上操作的功能,通过mouseover和mouseout分两步走,代码如下,完美实现
$('.more').mouseover(function () {
$(this).find('.content').show()
})
$('.more').mouseout(function () {
$(this).find('.content').hide()
})