2016-06-21 69 views
0

陣營JSX:缺少ReactDom 「的minLength」 在Safari

<input 
    type="password" 
    name="password" 
    value={this.state.password} 
    minLength={2} 
    maxLength={4} 
    required="required" 
    onChange={e => this.handleOnChange(e)} 
    placeholder="Password"/> 

處理程序:

handleOnChange = (e) => { 
    console.dir(e.target) 
    console.dir(e.target.minLength) // ==> expected value is 2, but undefined 
    console.dir(e.target.maxLength) // ==> 4 

在Chrome中,我能找到 「的minLength」。但在Safari中,缺少「minLength」的鍵值巴黎。

「maxLength」確實存在。

我沒有抓住這個問題,Safari沒有實現「minLength」嗎?

版本:

  • 的Safari 9.1.1(11601.6.17)

回答