/ input >> \的一部分表示它是“为'input'预期的对应JSX结束标记。我如何更改它才是正确的?

时间:2019-02-22 04:09:02

标签: javascript html jsx

<form>
<div class="control input-field">
<input id="timer-input" type="number">
<label for="timer-input">Hours</label> />\
</hr>/input>>\
<hr>\
<label for="time_picker">This is time picker:</label>\
<input type="time" id="time_picker" />\
</hr>\
</div>

上面写着/ input >> \的部分是我遇到问题的部分。

1 个答案:

答案 0 :(得分:0)

清理干净

<form>
<div class="control input-field">
<input id="timer-input" type="number">
<label for="timer-input">Hours</label>
</hr>
<hr>
<label for="time_picker">This is time picker:</label>
<input type="time" id="time_picker" />
</hr>
</div>

不确定其他东西是什么。希望这会有所帮助。