Skip to content Skip to sidebar Skip to footer

Reactjs - Is There A Way To Trigger A Method By Pressing The 'enter' Key Inside ?

Using only onChange and value and while focused inside a , preferably without jQuery, is there a way to trigger a method by pressing the 'Enter' key? Because, would o

Solution 1:

What you can do is use React's key events like so:

<input
    placeholder='Enter name'
    onChange={this.textChange.bind(this)}
    value={this.state.name} 
    onKeyPress={this.enterPressed.bind(this)}
/>

Now, to detect enter key, change the enterPressed function to:

enterPressed(event) {
    var code = event.keyCode || event.which;
    if(code === 13) { //13 is the enter keycode//Do stuff in here
    } 
}

So what this does is add an event listener to the input element. See React's Keyboard Events. The function enterPressed is then triggered on event, and now enterPressed detects the key code, and if it's 13, do some things.

Here's a fiddle demonstrating the event.


Note: The onKeyPress and onKeyDown events trigger instantaneously on user press. You can use onKeyUp to combat this.

Solution 2:

Use onKeyPress and the resulting event object's key property, which is normalised cross-browser for you by React:

<metacharset="UTF-8"><scriptsrc="https://unpkg.com/react@15.3.1/dist/react.js"></script><scriptsrc="https://unpkg.com/react-dom@15.3.1/dist/react-dom.js"></script><scriptsrc="https://unpkg.com/babel-core@5.8.38/browser-polyfill.min.js"></script><scriptsrc="https://unpkg.com/babel-core@5.8.38/browser.min.js"></script><divid="app"></div><scripttype="text/babel">varApp = React.createClass({
  getInitialState() {
    return {
      name: ''
    }
  },
  handleChange(e) {
    this.setState({name: e.target.value})
  },
  handleKeyPress(e) {
    if (e.key === 'Enter') {
      alert('Enter pressed')
    }
  },
  render() {
    return<inputplaceholder='Enter name'onChange={this.handleChange}onKeyPress={this.handleKeyPress}value={this.state.name}
    />
  }
})

ReactDOM.render(<App/>, document.querySelector('#app'))

</script>

Solution 3:

You can add a onKeyPress to your input and make it equal the function you want to execute . You would just need to make sure the key pressed was the enter key using the event that is passed to the function as an argument

Unfortunately can't just use the onchange method alone to get this result

Solution 4:

You just simply fire a function like this,

<input type="text"
 onKeyPress={(event) => {
    var key = event.keyCode || event.which;
    if (key === 13) {
        // perform your Logic on "enter" button console.log("Enter Button has been clicked")
    }
}}
/>;

Post a Comment for "Reactjs - Is There A Way To Trigger A Method By Pressing The 'enter' Key Inside ?"