We found this in our code (we haven't written it by our selfs, and we are new to programmng), can anyone explain what this.value means and how you change it?
<select id="sel_target" onchange="paint(this.value);sendid(value); highlight(value);move_to(value)">
Thank you!
To pass multiple parameters to onChange in React:Pass an arrow function to the onChange prop. The arrow function will get called with the event object. Call your handleChange function and pass it the event and the rest of the parameters.
No; the onchange attribute is only applicable to form field elements ( input , select , textarea , etc).
onBlur should be used instead of onChange , unless absolutely necessary and it causes no negative consequences for keyboard only or screen reader users.
this.value represents the selected value.
Example:
function getComboA(sel) {
var value = sel.value;
}
<select id="comboA" onchange="getComboA(this)">
<option value="">Select combo</option>
<option value="Value1">Text1</option>
<option value="Value2">Text2</option>
<option value="Value3">Text3</option>
</select>
The above example gets you the selected value OnChange event.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With