본문 바로가기
자바스크립트

셀렉트박스의 text 값과 value 값을 가져오는 방법

by 뇽꾸리 2020. 12. 7.
반응형
let target = document.querySelector('#brandCode');
console.log(target.options[target.selectedIndex].value);
console.log(target.options[target.selectedIndex].text);

 

반응형

댓글