返回值:jQuerymousemove([[data],fn])
jQuery mousemove() 方法概述
當(dāng)鼠標(biāo)指針在指定的元素中移動時,就會發(fā)生 mousemove 事件。
mousemove事件處理函數(shù)會被傳遞一個變量——事件對象,其.clientX 和 .clientY 屬性代表鼠標(biāo)的坐標(biāo)
參數(shù)
fnFunctionV1.0
在每一個匹配元素的mousemove事件中綁定的處理函數(shù)。
[data],fnString,FunctionV1.4.3
data:mousemove([Data], fn) 可傳入data供函數(shù)fn處理。
fn:在每一個匹配元素的mousemove事件中綁定的處理函數(shù)。
示例
描述:
獲得鼠標(biāo)指針在頁面中的位置:
jQuery 代碼:
$(document).mousemove(function(e){
$("span").text(e.pageX + ", " + e.pageY);
});