gpt4 book ai didi

javascript - 如何在 JS 中模拟 pointerdown 事件

转载 作者:行者123 更新时间:2023-12-05 03:54:27 24 4
gpt4 key购买 nike

我有一个具有 pointerdown 事件监听器的 div,我想通过脚本模拟 pointerdown 事件。我该怎么做?

最佳答案

MDN spec for creating & triggering events :

// create a specific "pointerdown" event
var myEvent = new PointerEvent('pointerdown')

// Listen for the event (POC)
document.body.addEventListener('pointerdown', console.log);

// Dispatch the event (on the "<body>" element)
document.body.dispatchEvent(myEvent );

如您所见,我正在使用 PointerEvent构造函数。

不同的事件有不同的构造函数,需要看哪个有构造函数,没有的话就用CustomEvent构造函数。


可能 99% 的任何 DOM 相关问题都已在 MDN 文档中得到解答,您只需要将各个部分连接在一起即可。

关于javascript - 如何在 JS 中模拟 pointerdown 事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60976956/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com