使用wx-open-launch-weapp,点击标签一次,launch事件触发了两次,这是为什么?
react中同一个使用开发标签两次,监听不同dom的launch事件,但是在点击其中标签一次,如下方例子,console打印了两次,这个有办法解决么? const bottomBtn = document.getElementById("launch-bottom-btn");
bottomBtn.addEventListener("launch", (e) => {
console.log("success-btn");
});