最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Event.target.value not retrieving value properly - Stack Overflow

programmeradmin1浏览0评论

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 selects in React with non number values and with event.target.value with the onChange function of the select element. Where are you placing the onChange 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
Add a ment  | 

1 Answer 1

Reset to default 11

What you want is:

console.log(event.target.getAttribute('value'));
发布评论

评论列表(0)

  1. 暂无评论