1.基於Struts標簽,submit類型提交:
<html:form action="/login">
method屬性可以忽略不寫,原因是Struts默認method="post"
2.基於非Struts標簽,submit類型提交:
<from action="/Test/login.do?method="login"" method="post">
非Struts標簽時,method屬性默認為get,為方便,一般設置為post
3.非Struts標簽,button類型提交:
<from action="/Test/login.do?method=login" method="post">
<input type="button" name="login" onclick="login()"/>
<javaScript type="test/javaScript">
function login(){
document.forms[0].action=document.forms[0].action + "method=login"
document.forms[0].submit();
}