반응형

 

SelectBox 선택한 항목의 innerText 조회

 

const selectBoxElement = document.getElementById('selectBoxId');
const innerText = selectBoxElement .options[selectBoxElement .selectedIndex].text;

 

반응형

'Javascript' 카테고리의 다른 글

화살표 함수  (0) 2021.03.10
[Vue] 컴포넌트간 데이터 통신  (0) 2020.09.11
[vue] vue-router 사용  (0) 2020.09.08
[Vue] Component 사용  (0) 2020.09.06
[Vue] Vue Project 생성  (0) 2020.09.03

+ Recent posts