JavaScript 参考手册
Form method 属性
返回表单数据发送方法
源代码:
点击运行 »
<form id="frm1" action="form_action.asp" method="get"> First name: <input type="text" name="fname" value="Donald"><br> Last name: <input type="text" name="lname" value="Duck"><br> <input type="submit" value="提交"> </form> <p>发送表单数据的方法: <script> document.write(document.getElementById("frm1").method); </script> </p>
运行结果:
点击运行 »