function checkValidate(form) { if (form.id.value == "") { alert("아이디를 입력해주세요"); form.id.focus(); return false; } if (form.pw.value == "") { alert("비밀번호를 입력해주세요"); form.pw.focus(); return false; } return true; } function checkLogIn() { $.ajax({ url: "../../ajax/session.php", type: "POST", async: false, data: { fnName: 'get_session_userid' }, success:function(result) { if (result==""){ retValue = ""; } else { retValue = result; } } }); return retValue; }

마이페이지

TOP