admin管理员组文章数量:1344691
.html
I'm at the end of this tutorial and I'm just not understanding how e.target.value works. Walk through the end of this tutorial and see the sample code that there is please. I'm newbie both to React and Javascript.
https://facebook.github.io/react/docs/thinking-in-react.html
I'm at the end of this tutorial and I'm just not understanding how e.target.value works. Walk through the end of this tutorial and see the sample code that there is please. I'm newbie both to React and Javascript.
Share Improve this question edited Aug 10, 2017 at 23:51 halfer 20.4k19 gold badges108 silver badges201 bronze badges asked Aug 10, 2017 at 23:19 Diogo MatiasDiogo Matias 2131 gold badge2 silver badges7 bronze badges 4 |3 Answers
Reset to default 14The e
is the argument of an event handler you attach to a certain event on a certain component... in this case the onFilterTextInput
event. Events are objects with certain properties, and e.target
almost always represents a DOM element.
Thus e.target.value
is the value property of some DOM element, in this case that means the text entered in the search input.
When you need to handle multiple controlled input elements, you can add a name attribute to each element and let the handler function choose what to do based on the value of event.target.name. By React DOC
So, 'e' stands for event and target is the element that triggered the event. I find pretty useful this explanation about the difference between event.target and event.currentTarget at W3Schools
本文标签: javascriptetargetvalue on an input field ReactJshow does it workStack Overflow
版权声明:本文标题:javascript - e.target.value on an input field ReactJs, how does it work? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1738329236a2075729.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
e
is the event, which in this case ischange
,target
is the element that triggered the event, which in this case is theinput
, andvalue
is the value of theinput
element – JJJ Commented Aug 10, 2017 at 23:24