Qua*_*noi 10
<button name="someName" value="someValue" type="submit">Submit</button>
<button name="otherName" value="otherValue" type="submit">Cancel</button>
Run Code Online (Sandbox Code Playgroud)
您将拥有someName=someValue或otherName=otherValue在您的请求数据中
当然,只需给每个submit按钮一个name属性,点击的任何一个都会出现在提交的变量中:
<input type="submit" name="doConfirm" value="Confirm" />
<input type="submit" name="doCancel" value="Cancel" />
Run Code Online (Sandbox Code Playgroud)