This HTML:
<li value="16-May-2017" data-reactid=".0.1.0.0.1.2.2.$16">16test</li>
I'm trying to retrieve the value of, with this React.js code:
selectDate(event) {
event.preventDefault();
console.log(event.target.value);
if(this.state.whichDate == 0) {
this.state.selectedToDate = event.target.value
this.state.whichDate = 1
} else {
this.state.selectedFromDate = event.target.value
this.state.whichDate = 0
}
}
However, I get "16" printed to console instead of "16-May-2017".
I thought it might be printing the text between the tags, but it can't be as I put test there to see... maybe it's not printing anything after the hyphen in the value?
This HTML:
<li value="16-May-2017" data-reactid=".0.1.0.0.1.2.2.$16">16test</li>
I'm trying to retrieve the value of, with this React.js code:
selectDate(event) {
event.preventDefault();
console.log(event.target.value);
if(this.state.whichDate == 0) {
this.state.selectedToDate = event.target.value
this.state.whichDate = 1
} else {
this.state.selectedFromDate = event.target.value
this.state.whichDate = 0
}
}
However, I get "16" printed to console instead of "16-May-2017".
I thought it might be printing the text between the tags, but it can't be as I put test there to see... maybe it's not printing anything after the hyphen in the value?
Share Improve this question asked May 3, 2017 at 8:26 WayneioWayneio 3,5769 gold badges47 silver badges76 bronze badges 4-
1
<li> is not an input element so you cant get its value from .value, you will have to use
.getAttribute('value')
– naortor Commented May 3, 2017 at 8:32 - 1 .value on an li element has to be a number. Therefore the value attribute is 16: w3schools./tags/att_li_value.asp – Frank Roth Commented May 3, 2017 at 8:35
-
Not true. I have made
select
s in React with non number values and withevent.target.value
with theonChange
function of theselect
element. Where are you placing theonChange
handler? – mrinalmech Commented May 3, 2017 at 8:37 -
You should rather be using a custom data attribute here in the first place, instead of abusing the
value
attribute for something it is not meant for. – C3roe Commented May 3, 2017 at 8:42
1 Answer
Reset to default 11What you want is:
console.log(event.target.getAttribute('value'));