我在登入的按鈕下寫了跳轉到乙個action的頁面,**如下:
this.getel().dom.action='/rsgl/login.do?username='+username+'&'+'password='+password;
並在相應的loinaction下接收了相應的引數,**如下:
* @struts.action-forward name="success" path="/xtkzmain.jsp" contextrelative="true"
* @struts.action-forward name="failure" path="/login.jsp"
// 獲取提交的使用者名稱:
string strusername = request.getparameter("username");
// 獲取提交的密碼:
string strpassword = request.getparameter("password");
ctlm06 ctlm06 = ctlm06service.getuserinf(strusername,strusername);
if(ctlm06!=null)
結果在成功進入主頁="/xtkzmain.jsp後,瀏覽器的位址列還是顯示http://localhost:8080/rsgl/login.do?username=1&password=1。
http://localhost:8080/rsgl/xtkzmain.jsp呢????
action提交form表單後不跳轉
正常的form表單提交後頁面都會跳轉,為了防止頁面跳轉,可使用jquery的ajaxsubmit來防止跳轉,可使頁面保持原樣不變 1.首先引入以下檔案 必須 必須 非必須2.使用方法 提交到當前伺服器 function submitform return false 必須返回false,否則表單會自...
Struts中action跳轉種類
1 完整的action name someform input somejsp.jsp 這樣做的效果是 execute 僅當validate 成功以後才執行 input屬性指定的是乙個uri。2 僅有form的action 首先,struts會在定義的scope搜尋someform,如果找到則重用,...
Struts構架中action的跳轉大全
1 完整的action name someform input somejsp.jsp 這樣做的效果是 execute 僅當validate 成功以後才執行 input屬性指定的是乙個uri。2 僅有form的action 首先,struts會在定義的scope搜尋someform,如果找到則重用,...