reactjs – onKeyDown事件不在React中的div上工作

前端之家收集整理的这篇文章主要介绍了reactjs – onKeyDown事件不在React中的div上工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在React中的div上使用keyDown事件.我做:
componentWillMount() {
      document.addEventListener("keydown",this.onKeyPressed.bind(this));
  }

  componentWillUnmount() {
      document.removeEventListener("keydown",this.onKeyPressed.bind(this));
  }      

  onKeyPressed(e) {
    console.log(e.keyCode);
  }

  render() {
    let player = this.props.boards.dungeons[this.props.boards.currentBoard].player;
    return (
      <div 
        className="player"
        style={{ position: "absolute" }}
        onKeyDown={this.onKeyPressed} // not working
      >
        <div className="light-circle">
          <div className="image-wrapper">
            <img src={IMG_URL+player.img} />
          </div>
        </div>
      </div>
    )
  }

它工作正常,但我想在React风格中做得更多.我试过了

onKeyDown={this.onKeyPressed}

在组件上.但它没有反应.我记得它适用于输入元素.

Codepen:http://codepen.io/lafisrap/pen/OmyBYG

我该怎么做?

您应该使用tabIndex属性来侦听React中div上的onKeyDown事件.设置tabIndex =“0”应该激活你的处理程序.
原文链接:/react/301299.html

猜你在找的React相关文章