[jQuery] input박스에 아무것도 입력하지 않았을 경우 / email 형식을 잘못입력했을 경우 경고창 띄우기
$(document).ready(function() { //첫번째 input박스에 대한 액션 $('#inputbox아이디').keypress(function (e) { if (e.which == 13) { if($('#inputbox아이디').val()=='') { alert('inputbox아이디에 내용을 입력하세요'); } else { $('#inputbox아이디2').focus(); } } }); //두번째 input박스에 대한 액션 $('#inputbox아이디2').keypress(function (e) { if (e.which == 13) { $re=/^[0-9a-zA-Z]([-_.]?[0-9a-zA-Z])*@[0-9a-zA-Z]([-_.]?[0-9a-zA-Z])*.[a-zA-Z]{2,3}$/i..