I have to pass the value of the option whenever the item is selected.But after my event takes place, the passed value is always undefined. My code is as follows :
<select (change)="handle(this.value);">
<option value="0">Addition</option>
<option value="1">Subtraction</option>
<option value="2">Multiplication</option>
<option value="3">Division</option>
</select>
My angular2 code is as follows:
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit {
n1 = 0;
n2 = 0;
result = 0;
handle(value){
alert("selected option's value is "+value);
}
constructor() { }
ngOnInit() {
}
}
The problem is that whenever there is any change of option, the parameter(value) which is passed to the handle function is always "undefined".
alert("selected option's value is "+value);
In this line, the value of the parameter "value" is always undefined.
Please help!
Thanks in advance!