react.createref()
class CustomTextInput extends React.Component {
constructor(props) {
super(props);
// create a ref to store the textInput DOM element
this.textInput = React.createRef(); this.focusTextInput = this.focusTextInput.bind(this);
}
focusTextInput() {
// Explicitly focus the text input using the raw DOM API
// Note: we're accessing "current" to get the DOM node
this.textInput.current.focus(); }
render() {
// tell React that we want to associate the <input> ref
// with the `textInput` that we created in the constructor
return (
<div>
<input
type="text"
ref={this.textInput} /> <input
type="button"
value="Focus the text input"
onClick={this.focusTextInput}
/>
</div>
);
}
}const node = this.myRef.current;
Also in JavaScript:
- jquery replace multiple words
- run a function after delay javascript
- return array javascript
- remove row from table with XMLHttpRequest()
- javascript document.createElement add function
- blazor sample ujsing cliam policy
- state in react
- js how to to attach an event handler only once
- create an observabloe js
- discord bot remove message reaction
- passing a variable to the width style div angular
- what is node js
- JavaScript Operators
- js last array element
- nativescript vue get native from ref
- export multiple functions react
- npm intro js
- jquery remove style
- select parent of elemt
- html video tag autoplay not working
- recorrer letra por letra js
- antiforgerytoken mvc with ajax
- loop through json array and get key name
- jquery get current row value