触发 onmousemove
属性事件当鼠标指针在一个元素上移动时。
没有。
<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>