私は、動作しません、私のボタンのためにこのコードを持っているタイトルのために:反応中のボタンが無効になっているかどうかを確認するにはどうすればいいですか?
<Button
id="completeSelectedButton"
title={Boolean(document.getElementById('completeSelectedButton').disabled) ? 'Some of the selected todos is already Complete.' : '' }
disabled={Boolean((this.state.checkedIds.length !== 0) && // check if not empty
this.state.checkedIds.length === todos.filter(({id, completed}) => this.state.checkedIds.includes(id) && completed === false).length) ? false : true // if it matched, ALL THE CHECKED TODOS ARE UNFINISHED OR HAS completed property === false
}
onClick={() => {
onCompleteMultipleClick(this.state.checkedIds)
this.setState({checkedIds:[]});
}}
>
私はボタンが無効になっている場合は、タイトルを設定したいが、私は、私はこのエラーを持っていますので、それが動作していないと思います私はReactがそれを見つけることができないと思う?
Uncaught TypeError: Cannot read property 'disabled' of null
[参照](https://facebook.github.io/react/docs/refs-and-thedom。 html)ejem。あなたのコードで(最初のレンダリングの後で)これにアクセスするためのは、 'let button = this.refs [" MyButton "]。disabled' –