问题描述
<form action="PHP.PHP" method="post">
<input name="username"></input>
<input name="password"></input>
<button type="submit" name="submit">submit</button>
</form>
在提交按钮中使用名称属性是什么?谢谢你讲
解决方法
主要目的是在表单上有多个提交按钮的情况下,能够检测到单击了哪个按钮来发送表单。
在大多数情况下,就像问题中描述的那样,无需命名提交按钮。
也请检查此question。