html----四種「返回按鈕」的使用

<html:form method="post" action="mypath/action1.do?method=showIndex" >javascript

   

<input type="hidden" name="fatherID" id="fatherID" value="${Current_Id}" />html

   

1. <!--提交式返回,不多這麼用,本身用過的情形是就是爲了返回 -->     java

<input id="return" name="Submit" type="submit" class="btn" value="返回1"/>post

 

2. <!-- 此返回,是直接調用以前一次的請求  -->orm

<input type="button" class="btn"  value="返回2" onclick="javascript:history.go(-1);"/>htm

 

3. <!-- 這裏,「action1Form」要爲此Form表單裏action對應的Form名,從struts的配置文件裏可知。   ip

<input id="cancle" name="cancle" type="submit" class="btn" value="返回3" onclick="action1Form.action='${ctx }/mypath/action1.do?method=showIndex&fatherID=${Current_Id}'" />input

 

4. <!-- 這裏是使用JS調用Action來實現返回  -->it

<input type="button"  class="blue_btn" value="返回4" onclick="javascript:window.location.href='${ctx}/project/action2.do'"/>io

 

 

</html:form>

相關文章
相關標籤/搜索