onmousemove 事件
onmousemove 事件
实例
将鼠标指针移到 <div> 元素上时执行 JavaScript:
<div onmousemove="myFunction()">Move the cursor over me</div>
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 错误</h1>
<p>在此例中,我们将 alert 编写为 adddlert 来故意产生错误:</p>
<p id="demo"></p>
<script>
try {
adddlert("Welcome guest!");
}
catch(err) {
document.getElementById("demo").innerHTML = err.message;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
页面下方有更多 TIY 实例。
定义和用法
onmousemove 事件当指针在元素上移动时发生 。
浏览器支持
事件 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
onmousemove | 支持 | 支持 | 支持 | 支持 | 支持 |
语法
在 HTML 中:
<element onmousemove="myScript">
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 错误</h1>
<p>在此例中,我们将 alert 编写为 adddlert 来故意产生错误:</p>
<p id="demo"></p>
<script>
try {
adddlert("Welcome guest!");
}
catch(err) {
document.getElementById("demo").innerHTML = err.message;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
在 JavaScript 中:
object.onmousemove = function(){myScript};
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 错误</h1>
<p>在此例中,我们将 alert 编写为 adddlert 来故意产生错误:</p>
<p id="demo"></p>
<script>
try {
adddlert("Welcome guest!");
}
catch(err) {
document.getElementById("demo").innerHTML = err.message;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
在 JavaScript 中,使用 addEventListener() 方法:
object.addEventListener("mousemove", myScript);
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 错误</h1>
<p>在此例中,我们将 alert 编写为 adddlert 来故意产生错误:</p>
<p id="demo"></p>
<script>
try {
adddlert("Welcome guest!");
}
catch(err) {
document.getElementById("demo").innerHTML = err.message;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
注释:Internet Explorer 8 或更早的版本不支持 addEventListener() 方法。
技术细节
冒泡: | 支持 |
---|---|
可取消: | 支持 |
事件类型: | MouseEvent |
支持的 HTML 标签: | 所有 HTML 元素,除了:<base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style> 以及 <title> |
DOM 版本: | Level 2 Events |
更多实例
示例代码:
这个例子演示了 onmousemove、onmouseenter 和 mouseover 事件之间的区别:
<div onmousemove="myMoveFunction()">
<p id="demo">I will demonstrate onmousemove!</p>
</div>
<div onmouseenter="myEnterFunction()">
<p id="demo2">I will demonstrate onmouseenter!</p>
</div>
<div onmouseover="myOverFunction()">
<p id="demo3">I will demonstrate onmouseover!</p>
</div>
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 错误</h1>
<p>在此例中,我们将 alert 编写为 adddlert 来故意产生错误:</p>
<p id="demo"></p>
<script>
try {
adddlert("Welcome guest!");
}
catch(err) {
document.getElementById("demo").innerHTML = err.message;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
示例代码:
这个例子演示了 onmousemove、onmouseleave 和 onmouseout 事件之间的区别:
<div onmousemove="myMoveFunction()">
<p id="demo">I will demonstrate onmousemove!</p>
</div>
<div onmouseleave="myLeaveFunction()">
<p id="demo2">I will demonstrate onmouseleave!</p>
</div>
<div onmouseout="myOutFunction()">
<p id="demo3">I will demonstrate onmouseout!</p>
</div>
完整实例:
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript 错误</h1>
<p>在此例中,我们将 alert 编写为 adddlert 来故意产生错误:</p>
<p id="demo"></p>
<script>
try {
adddlert("Welcome guest!");
}
catch(err) {
document.getElementById("demo").innerHTML = err.message;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html