HTML事件屬性Onmousemove
HTML事件屬性Onmousemove
觸發(fā)onmousemove
屬性事件當鼠標指針在一個元素上移動時。
HTML5中的新功能
沒有。
句法
<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>
Click to view the demo