React onKeyPress ie10兼容

#1
 const InputElem = multiline ? 'textarea' : 'input'
 <InputElem
      {...others}
      onChange={this.handleChange}
      onKeyPress={this.handleKeyPress}
 />

这个代码在chrome下一点事情都没有,但是ie下,这两个handle方法根本不会被调用。这是什么情况?