<html>
<form action= "/select" method= "POST" accept-charset="utf-8">
<input type= "text" id= "input" name = "input"><BR>
<input type= "submit" id = "submitButton"><BR>
</form>
</html>
當我點擊此頁面上提交按鈕,只用id屬性,它發送過任何POST請求。但是,當我把名稱屬性,它發送的數據。兩者有什麼區別?的差異<form>標籤
名稱是用於提交表單提交數據。 Id用作標識符。 – epascarello