document.addEventListener('click', function (event) { // find nearest element up the tree that is an <a> var link = event.target.closest('a'); if (link) { // do ...
確定! 回上一頁