平常写法
<label for="username">用户名</label> <input type="text" id="username"/>
react中的写法:
<label htmlFor="username">用户名</label> <input type="text" id="username"/>
react 标签中的class ,类名称要用className避免与react 的class关键字进行冲突。
标签:用户名,react,框内,input,class,光标 From: https://www.cnblogs.com/duocaishijie/p/16642695.html