$(".post").hover(function(){
$(".buttons input", this).show();
});
一旦鼠标关闭,最简单的方法是让相同的元素再次隐藏.post?我'尝试制作类似于youtube帖子的东西(按钮在鼠标上显示/隐藏)
答案 0 :(得分:2)
显示标记
基于假设,
$(".post").hover(function(){
$(".buttons input", this).fadeIn('slow');
},
function(){
$(".buttons input", this).fadeOut('slow');
});