인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

trustme3221387's profile image
trustme3221387

asked

Getting Started with Programming: Web Introduction (Inflearn Original)

Hands-on: Validating the Membership Form - 1 (3-20)

3-20 querySelector질문

Written on

·

164

0

var accountInput = document.querySelector('input[name="account"]');

여기서 괄호 안에 'input[name="account"]' 이거는 무슨 선택자인가요??

javascriptHTML/CSS

Answer 1

0

input 이 가질 수 있는 속성은 class, id, type 외에도 name 이라는 것도 있어요.

그래서 name 에 'account' 를 넣은 input 엘리먼트를 가져오는 선택자에요.

<input type="text" name="account">
trustme3221387's profile image
trustme3221387

asked

Ask a question