$( function (){ |
$( "#panel h5.head" ).mouseover( function (){ |
$( this ).next().show(); |
}); |
$( "#panel h5.head" ).mouseout( function (){ |
$( this ).next().hide(); |
}) |
}) |
// 另一个方法 |
$( function (){ |
$( "#panel h5.head" ).hover( function (){ |
$( this ).next().show(); |
}, function (){ |
$( this ).next().hide(); |
}) |
}) |