透過超連結來POST表單

摘要:透過超連結來POST表單


<html>
	<header></header>
	<body>
		<form name="form1" action = "test1.html" method="POST" >
			<input type="text" id="action" name="action" value="get"/>
      <!-- 用下列語法就運用超連結進行POST動作 -->
			<a href="javascript:document.form1.submit();">click</a>
		</form>
	</body>
</html>