Listen for the enter key press. document.body.addEventListener( 'keyup', function (e) { if ( e.keyCode == 13 ) { // Simulate clicking on the ...
確定! 回上一頁