在鼠标移出元素后,我试图删除附加的元素。.hover 回调中的回调我做错了什么?
// START OF $(document).ready(function() {
$(document).ready(function ()
$('.custom-right-boxes a').hover(function () {
$(this).append('<div class="click-here"><b>Click</b><span>Here</span></div>');
$('.click-here').stop().animate({
width: '88px',
height: '58px',
marginLeft: '-44px',
marginTop: '-40px'
}, {
duration: 300
});
}, function () {
$('.click-here').stop().animate({
width: '0px',
height: '0px',
marginLeft: '-0px',
marginTop: '-0px'
}, {
duration: 300
}),
function () {
$('.click-here').remove();
};
});
// END OF $(document).ready(function() {
});