我是 html 和 JS 的新手,我有一个包含几个字段的表单,我需要将这些字段发布到 URL。
<form>
<div>
<label style="font-size:16px" for="title">Title:</label>
<input type="text" id="title" maxlength="128"/>
</div>
<div>
<label style="font-size:16px" for="description">Description:</label>
<textarea id="description" maxlength="1999"></textarea>
</div>
<div>
<label style="font-size:16px" for="idnumber">IDNumber:</label>
<input type="number" id="idnumber"/>
</div>
</form>
我需要将输入此表单的值发布到已经知道如何处理输入的 URL。我确信这很容易做到,但我是新手,我很难找到解决方案。对任何不正确的术语表示歉意。谢谢!