我想在用户的鼠标停在链接上方时预加载内容。如果用户的鼠标在页面上快速移动并在链接上停止,我假设用户将单击该链接。有没有一种简单的方法来检测这个?
答案 0 :(得分:2)
$("yourElement").hover(function () {
// Do this when mouse is over element},
function () {
// Optional. Do this when mouse leaves element
});