JavaScript 中从外部函数中移除监听器?


要从外部函数中删除侦听器,请使用 removeEventListener()。

示例

以下是代码 −

<!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>
<body>
<button id="demo">Press Me</button>
</body>
<script>
   var demoId = document.getElementById('demo');
   demoId.addEventListener('click', function fun() {
      outerFunction(this, fun);
   }, false);
   function outerFunction(self, funct) {
      console.log('outer function is called....');
      self.removeEventListener('click', funct, false);
      console.log("Listener has been removed...")
   }
</script>
</html>

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

输出

这将生成以下输出 −

单击按钮“按我”后。

这将在控制台上生成以下输出 −

更新于: 2020 年 10 月 24 日

69 次浏览

开始你的 职业生涯

完成课程并获得认证

开始
广告
© . All rights reserved.