1. 텍스트 영역의 onkeydown 이벤트를 들어보세요
function sbFrm() { var Contenthf=document.getElementById("Contenthf"); var txtAr = Contenthf.getElementsByTagName("textarea")[0]; if (txtAr.innerHTML == "") { txtAr.focus(); return false; } Contenthf.submit(); window.opener.afterReload(); return false; }
3. Ctrl 키를 누르고 키코드가 13(Enter)이면 양식을 보내는 함수가 호출됩니다.
function keySend(event) { if (event.ctrlKey && event.keyCode == 13) { sbFrm(); } }
4. window.open()으로 열린 현재 페이지라면 window.open 페이지에 다시 로드 기능을 추가하세요
function afterReload() { setTimeout(function () { window.location.reload(); }, 1000); }