我有一個代碼只能在onclick事件後執行。在移動設備上它很好,因爲我使用了touchstart和touchend。是否有類似於在電腦上使用觸摸屏的事件?onclick結束了嗎?
我的代碼目前類似於..
document.getElementById('trigger-box').addEventListener(function(e) {
// the event will be used later
// my code
});
我試圖尋找答案互聯網可惜未能找到答案。因此,我在這裏發佈了我的問題。
也許onmouseup? –
@FabrizioMazzoni,的確是這樣的答案。 –
我會說[Onmousedown](http://www.w3schools.com/jsref/event_onmousedown.asp)。 –