觸發(fā) onmousemove
屬性事件當(dāng)鼠標(biāo)指針在一個(gè)元素上移動(dòng)時(shí)。
沒(méi)有。
<element onmousemove="script or Javascript function name">
所有HTML元素,EXCEPT:
<base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, <title>
|
Yes | Yes | Yes | Yes | Yes |
<!DOCTYPE html>
<html>
<body>
<p id="p1" onmousemove="onmouseMove()" onmouseup="mouseUp()">
Click the text!
</p>
<script>
function onmouseMove() {
console.log("move");
}
function mouseUp() {
console.log("up");
}
</script>
</body>
</html>
更多建議: