엔터의 keyCode가 13. 이벤트 핸들러 받아서 13인지 확인 후에 이후 처리 하면 된다. $("#someid").keypress(function(e) { if (e.keyCode === 13) ...
確定! 回上一頁