如何将光标放在使用另一个函数调用的元素内并淡入?这是我现在拥有的功能:
function ajax_cart() {
var url = 'shoppingcart.php';
jQuery("#carttopcontainer").load(url);
jQuery('html, body').animate({scrollTop:0}, 'slow');
jQuery("#carttopcontainer").fadeIn(400);
jQuery('#carttopcontainer').hoverIntent({
over: startHover,
out: endHover,
timeout: 1000
});
}
#carttopcontainer
div 是一个小弹出窗口,显示使用 ajax post 添加项目后的购物车 div 容器。如果淡入,我想将鼠标光标放在该 div 内的任何位置。
谢谢你。