表單與操作頁面分離
按鈕按下,click 或者onclick事件觸發
傳遞一個唯一性的參數至子頁面JSP,
子頁面內,負責查詢與判斷邏輯,
JSP:FORWARD嘗試過,直接報錯
復制代碼 代碼如下:
<script type="text/JavaScript">
function tigger()
{
var f_application =1;
<jsp:forward page="input.jsp">
<jsp:param name= "t_application" value='<%=f_application%>'>
</jsp:forward>>
}
</script>
子頁面
復制代碼 代碼如下:
<%
String tf_application=(request.getParameter("t_application"));
%>
<%=tf_application%>
<%
if(tf_application !=null)
{
tf_application = null;
}
%>
<%=tf_application%>
嘗試使用request或者session,如何使用onclick屬性在getAtturibute上使用是個難題