1 回答

TA貢獻(xiàn)1829條經(jīng)驗(yàn) 獲得超4個(gè)贊
您需要將所有表單控件放在一個(gè)form標(biāo)簽下,并在submit其中添加一個(gè)輸入。您現(xiàn)在使用的提交輸入僅發(fā)送其封閉form標(biāo)簽內(nèi)的輸入,而不發(fā)送其他form標(biāo)簽內(nèi)的輸入。
https://www.w3.org/TR/html4/interact/forms.html#submit-format
<form action="/" method="POST">
<input class="Input-Box" type="text" name="article_content" />
<input type="text" name="threshold_input" />
<input type="text" name="prediction_count" />
<br />
<br />
<!-- This input submits everything inside of this form tag -->
<input type="submit" value="Find Systems" />
</form>
添加回答
舉報(bào)