11.使用htmlFor替换label标签中的for属性 - yiqunkeke/react-jianshu-shangguigu-zty GitHub Wiki
<div>
{/*在react中,label标签中的for属性会被当成for循环中的关键字。
所以,在react中,我们把label标签中的for属性,替换成 htmlFor,从而避免控制台报警告*/}
<label htmlFor="insertArea">输入内容</label>
<input value={this.state.inputValue} id="insertArea"/>
<button>提交</button>
</div>