我有一个代码,只能在onclick事件后执行。在移动设备上它很好,因为我使用touchstart和touchend。是否有类似于touchend的事件在计算机上使用?
我的代码目前看起来类似于..
document.getElementById('trigger-box').addEventListener(function(e) {
// the event will be used later
// my code
});
我试过在网上搜索答案,但遗憾的是找不到答案。因此,我在这里发布了我的问题。
根据评论:
document.getElementById('trigger-box').addEventListener("mouseup", function(e) {
// the event will be used later
// my code
});
onmouseup
发生在click
事件执行之前
<button onclick="console.log(1)" onmouseup="console.log(2)">test</button>
因此,我能想到的唯一解决方法是在click
事件完成时手动调用
function myClick()
{
console.log('This is in click');
afterClick();
}
function afterClick()
{
console.log('This is after click');
}
<button onclick="myClick()" >test</button>