如何在javascript中获取请求转发后的request对象传递的数据

下面的例子:在 index.jsp 页面通过   request.setAttribute("param","nihao"); 来给变量param赋值,

                     并通过   将页面请求转发到deal.jsp,

                     然后在deal.jsp页面单击按钮,通过onclick事件调用show()方法,

                     show()方法的  var str="<%=request.getAttribute("param") %>"语句就是在javascript中通过jsp语句

             获取request范围内的变量的值,

                     最后通过  document.getElementById("showText").value=str把值显示在文本框中

index.jsp:

    .

    .

    .

   
    <%
        String str="param";
        request.setAttribute("param","nihao");//保存执行结果
    %>
    
 

    .

    .

    .

deal.jsp:

    .

    .

    .

 

   
 
 
 
   
   
 

    .

    .

    .

你可能感兴趣的:(javascript的使用)