html的表单设置
用到的是<form>表单</form>
例子:
<form action="form_action.asp" method="get">
<p>First name: <input type="text" name="fname" /></p>
<p>Last name: <input type="text" name="lname" /></p>
<input type="submit" value="Submit" />
</form>
详见:https://www.w3school.com.cn/tags/tag_form.asp
主要看这一块:
|