2017-12-01 13 views

답변

1

당신이 선택한 옵션에서 .innerText를 얻을 수 있습니다 테스트하는 방법을 알아 질수 그림 :

var select = selectElement.nativeElement; 
var text = select.options[select.selectedIndex].innerText 
+0

감사합니다 - 완벽하게 작동합니다. – Dean