User정보 받아오기

jini.choi·2022년 5월 18일
0

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Momentum</title>
    <link rel="stylesheet" href="style.css" />
</head>
<body>
    <form id="login-form">
        <input required maxlength="15" type="text" placeholder="What is your name?" />
        <input type="submit" value="Log In">
    </form>
    <h1 id="greeting" class="hidden"></h1>
    <script src="app.js"></script>
</body>
</html>

CSS

.hidden {
    display: none;
}

JavaScript

const loginForm = document.querySelector("#login-form");
const loginInput = document.querySelector("#login-form input");
const greeting = document.querySelector("#greeting");

const HIDDEN_CLASSNAME = "hidden"; 
//일반적으로 string만 포함된 변수는 대문자로 표기학 string을 저장하고 싶을 때 사용

function onLoginSubmit(event){
    event.preventDefault(); //브라우저가 기본동작을 실행하지 못하게 막음
    const username = loginInput.value;
    loginForm.classList.add(HIDDEN_CLASSNAME);
    greeting.innerText = `${username}님 환영합니다.`;
    greeting.classList.remove(HIDDEN_CLASSNAME);
} 


loginForm.addEventListener("submit", onLoginSubmit);
  • 이 코드의 문제는 user의 이름을 저장하지 못하고 새로고침할때마다 이름 작성해야됨
  • 다음 게시물을 통해 유저 정보 저장하기를 확인하자

이 글은 패스트캠퍼스 노마드코더 '바닐라 JS로 크롬 앱 만들기'을 수강하며 정리한 노트입니다.
https://nomadcoders.co/javascript-for-beginners/lobby

profile
개발짜🏃‍♀️

0개의 댓글