本文介绍了ReactJs - onKeyPress事件处理的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在ReactJS中使 onKeyPress
事件工作。当 输入(keyCode = 13)
时,它应该发出警告。
How can I make the onKeyPress
event work in ReactJS. It should alert when enter (keyCode=13)
is pressed.
var Test = React.createClass({
add: function(event){
if(event.keyCode == 13){
alert('Adding....');
}
},
render: function(){
return(
<div>
<input type="text" id="one" onKeyPress={this.add} />
</div>
);
}
});
React.render(<Test />, document.body);
推荐答案
我正在使用React 0.14.7,使用 onKeyPress
和 event.key
效果很好。
I am working with React 0.14.7, use onKeyPress
and event.key
works well.
handleKeyPress = (event) => {
if(event.key == 'Enter'){
console.log('enter press here! ')
}
}
render: function(){
return(
<div>
<input type="text" id="one" onKeyPress={this.handleKeyPress} />
</div>
);
}
这篇关于ReactJs - onKeyPress事件处理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!