搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
JavaScript
jQuery 教程
jQuery 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <title>jQuery mousemove事件示例 - 基础教程(div.cn)</title> <head> <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("div").on("mousemove", function(){ $(this).text(Math.random()); }); $("button").click(function(){ $("div").off("mousemove"); }); }); </script> </head> <body> <div style="padding:50px 10px; border:1px solid;">将鼠标指针悬停在此DIV上。</div> <p>单击按钮以删除事件处理程序:</p> <button type="button">删除事件</button> </body> </html>
运行结果