17

我正在用 jQuery 触发一些 DOM 事件triggerHandler()

<!DOCTYPE html>
<html>
<head>
  <title>stackoverflow</title>
  <script src="http://ajax.googleapis.com:80/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>

<body>
  <script>
    $(document).ready(function() {
      $(document).on('hey', function(customEvent, originalEvent, data) {
        console.log(customEvent.type + ' ' + data.user); // hey stackoverflow

      });

      // how to this in vanilla js
      $(document).triggerHandler('hey', [{}, {
        'user': 'stackoverflow'
      }])
    });
  </script>
</body>

</html>

如果没有 jQuery,我如何触发它?

重要:我需要知道事件类型和自定义数据

4

2 回答 2

15

如果您想要精确复制 jQuery 的行为,您可能最好挖掘jQuery source code.

如果您只想进行正常的事件调度和侦听,请参阅CustomEvent如何使用自定义数据调度事件以及addEventListener如何侦听它。

你的例子可能看起来像

document.addEventListener('hey', function(customEvent)
{
    console.log(customEvent.type + ' ' + customEvent.detail.user); // hey stackoverflow
});
document.dispatchEvent(new CustomEvent('hey', {'detail': {'user': 'stackoverflow'}}));
于 2015-04-27T14:24:28.827 回答
1

您可以使用自定义事件并将它们分发到您想要的元素上。

于 2015-04-27T14:23:56.483 回答