其他分享
首页 > 其他分享> > 点击用户名,也会自动聚焦光标到对应的input框内

点击用户名,也会自动聚焦光标到对应的input框内

作者:互联网

平常写法
<label for="username">用户名</label> <input type="text" id="username"/>
react中的写法:
<label htmlFor="username">用户名</label> <input type="text" id="username"/>

react 标签中的class ,类名称要用className避免与react 的class关键字进行冲突。

标签:className,用户名,react,框内,input,写法,class
来源: https://www.cnblogs.com/duocaishijie/p/16642695.html