$('#shfaq_foto_prof').hover(
function() {
if ($('#shfaq_foto_prof').is(':hover')) {
$('#show_upload').fadeIn( 500 );
} else {
$('#show_upload').fadeOut( 500 );
}
});
如何检查 jQuery 中的悬停状态并仅在 div "#shfaq_foto_prof" 悬停时显示 div '#show_upload' 并在未悬停时隐藏。