我试图弄清楚如何采用TextField
组件或使用Input
和InputLabel
组件来制作它,以便我有一个标签,并且文本字段位于标签的右边?
答案 0 :(得分:1)
您可以尝试以下方法:
<div>
<form onSubmit={this.onSubmitHandler}>
<label htmlFor="name">Name : </label>
<input type="text" id="name" onChange={this.onChangeHandler}/>
<label htmlFor="age">Age : </label>
<input type="text" id="age" onChange={this.onChangeHandler}/>
<label htmlFor="hair">Hair : </label>
<input type="text" id="hair" onChange={this.onChangeHandler}/>
<button>Add New</button>
</form>
</div>
这会给你这样的东西: