DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> JSP跨iframe如何傳遞參數實現代碼
JSP跨iframe如何傳遞參數實現代碼
編輯:關於JavaScript     
表單與操作頁面分離
按鈕按下,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上使用是個難題
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved