window.document.onkeydown = nosubmit; function nosubmit() { if (event.keyCode == 13) { // Enterキーが押下された if (window.event.srcElement.type == 'textarea') { return true; // テキストエリアではそのまま } return false; // Enterキーを無効化 } } // JavaScript Document