我有一个功能,当您将鼠标悬停在具有“评论”类的 div 上时,它会淡入回复按钮。
我遇到的问题是使按钮在淡入时可点击。
$(".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>
对此的任何帮助都会非常学徒,谢谢。:)