로그인 버튼을 눌렀을 시 로그인() 함수 안에 넣어놨었는데.. 아이디 저장이 되지 않았다. var userInputEmail = $.cookie('email', $("#email_real").val(), { expires : 365 }); var userInputCheckBox = $.cookie('idSave', $("#idSave").val()); console.log('userInputEmail >>> ', userInputEmail) console.log('userInputCheckBox >>> ', userInputCheckBox) $('input[name="email_real"]').val(userInputEmail); $('input[name="idSave"]').val(userInputCh..
프로젝트] 아이디 저장 feat. cookie
로그인 버튼을 눌렀을 시 로그인() 함수 안에 넣어놨었는데.. 아이디 저장이 되지 않았다. var userInputEmail = $.cookie('email', $("#email_real").val(), { expires : 365 }); var userInputCheckBox = $.cookie('idSave', $("#idSave").val()); console.log('userInputEmail >>> ', userInputEmail) console.log('userInputCheckBox >>> ', userInputCheckBox) $('input[name="email_real"]').val(userInputEmail); $('input[name="idSave"]').val(userInputCh..
2020.07.23