작성
·
127
0
var accountInput = document.querySelector('input[name="account"]');
여기서 괄호 안에 'input[name="account"]' 이거는 무슨 선택자인가요??
답변 1
0
input 이 가질 수 있는 속성은 class, id, type 외에도 name 이라는 것도 있어요.
그래서 name 에 'account' 를 넣은 input 엘리먼트를 가져오는 선택자에요.
<input type="text" name="account">