使用Reactjs清除输入字段?

我在下面使用一个变量。

var newInput = {

title: this.inputTitle.value,

entry: this.inputEntry.value

};

这由我的输入字段使用。

<input type="text" id="inputname" className="form-control" ref={el => this.inputTitle = el} />   

<textarea id="inputage" ref={el => this.inputEntry = el} className="form-control" />

<button className="btn btn-info" onClick={this.sendthru}>Add</button>

激活后,{this.sendthru}我想清除我的输入字段。但是,我不确定该怎么做。

另外,如本例所示,有人指出我应该将ref属性用于输入值。我还不清楚这到底意味着什么{el => this.inputEntry =

el}el在这种情况下有什么意义?

回答:

您可以使用输入类型=“重置”

<form action="/action_page.php">

text: <input type="text" name="email" /><br />

<input type="reset" defaultValue="Reset" />

</form>

以上是 使用Reactjs清除输入字段? 的全部内容, 来源链接: utcz.com/qa/426599.html

回到顶部