form表单中的action参数时间:2025-04-18 07:58:39例:<form action="?args=888"> <input type="button" value="submit"></form>通过这个方法,无法读取args,必须换成一下写法<form action=""> <input type="hidden" name="args" value="888"><input type="button" value="submit"></form>