Tutorialsplane

AngularJs get dropdown selected value


AngularJs get dropdown selected value : It is very simple to get the selected value from dropdown list. Here in this tutorial we are going to explain how you can get the selected value of dropdown list. You can use our online editor to see the output of the example.


AngularJs get dropdown selected value Example

AngularJs get dropdown selected value Example:





 
  

  
<div ng-app="myApp">  
<div ng-controller="myController">  

<p>Selected Value = {{selectedVal}}</p>  
</div>  
</div> 

  
      

Try it »

If you run the above example it will produce output something like this –