如何将切换悬停与事件结合起来?编码:
img.on('hover', function(){
name = $(this).attr('title');
function(){
$(this).parent().append('<figcaption>' + name);
},
function(){
$(this).find('figcaption').remove();
}
});