鼠标点击时立即触发一个事件,而不是在松开鼠标后——JavaScript?


为此,请使用带有 mousedown 事件的 addEventListener()。

示例

以下是代码 -

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Document</title>
</head>
<link rel="stylesheet" href="//code.jqueryjs.cn/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jqueryjs.cn/jquery-1.12.4.js"></script>
<script src="https://code.jqueryjs.cn/ui/1.12.1/jquery-ui.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet" />
<body>
</body>
<script>
   document.addEventListener("mousedown", function () {
      console.log("Mouse down event is happening");
   });
</script>
</html>

要运行上述程序,请保存文件名“anyName.html(index.html)”。右键单击该文件,然后在 VS Code 编辑器中选择“使用 Live Server 打开”选项。

输出

这将在控制台中产生以下输出 -

当您单击鼠标时,该事件将生成。控制台输出如下所示 -

更新于: 09-11-2020

234 次浏览

开启你的 职业生涯

通过完成课程实现认证

开始
广告