我有一个函数,当你悬停在具有类“评论”的div淡出回复按钮。制作按钮后点击fadeIn()
我有正在按钮点击时,它在淡出的问题。在这个
$(".comment").hover(
function() {
$(this).children(".commentOptions").fadeIn();
$(this).children("#reply").live('click',function(){
alert('clicked');
});
},
function() {
$(this).children(".commentOptions").fadeOut();
});
<div id="comment" class="comment">
<div class="commentOptions">
<div class="reply">
<div class="button" id="reply">Reply</div>
</div>
</div>
</div>
任何帮助将非常学徒,谢谢。 :)