是否有针对onclick结束的事件?

时间:2015-05-30 11:45:55

标签: javascript jquery html5 javascript-events onclick

我有一个代码,只能在onclick事件之后执行。在移动设备上它很好,因为我使用touchstart和touchend。是否有类似于touchend的事件可以在电脑上使用?

我的代码目前看起来类似于..

document.getElementById('trigger-box').addEventListener(function(e) {
    // the event will be used later
    // my code
});

我试过在网上搜索答案,但遗憾的是找不到答案。因此,我在这里发布了我的问题。

2 个答案:

答案 0 :(得分:2)

根据评论:

document.getElementById('trigger-box').addEventListener("mouseup", function(e) {
    // the event will be used later
    // my code
});

答案 1 :(得分:1)

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>