2016-06-02 8 views
2

私はすでにautoFocusまたはfocus()を試していますが、動作していないようです。どのようにオートフォーカスしてテキストエリアに反応するのですか?

<textarea autoFocus /> 

or 

<textarea ref="textarea" /> 
componentDidMount() { 
    findDOMNode(this.refs.textarea).focus(); 
} 

編集

autoFocusはクロームで働いているようです。

両方ともautoFocusfoucs()はiOSでは動作しません。

+1

[-webkit-user-selectプロパティ]を使用しないでください(http://stackoverflow.com/questions/30752250/ios-workaround-for-manually-focusing-on-an-input-textarea) –

答えて

関連する問題