动态绑定

$(document).on("mouseover",".not_receive_code",function(){
$(".msg_info_ui").stop().fadeIn();
});
$(document).on("mouseout",".not_receive_code",function(){
$(".msg_info_ui").stop().fadeOut();
});
原文地址:https://www.cnblogs.com/brady-wang/p/6265427.html