zoukankan      html  css  js  c++  java
  • 在jsp中用EL 表达来获取表单中的参数

     在一个JSP页面转到另一个JSP页面时,对表单中的参数用EL表达式提取为:
     
     
    <form action="sampleJsp.jsp" method="post"> 
        <input type="text" name="sampleValue" value="10" /> 
        <input type="text" name="sampleValue" value="11" /> 
        <input type="text" name="sampleValue" value="12" /> 
        <input type="text" name="sampleSingleValue" value="SingleValue"/> 
        <input type="submit" value="提交"/> 
       </form> 

    xx.jsp 的 <body>中    有 

        ${paramValues.sampleValue[2]} 
        ${param.sampleSingleValue } 

    显示结果为12 SingleValue 

    第一个EL表达就相当于在servlet中使用request.getParameterValues("sampleValue"); 

    第二个EL表达式就相当于在servlet中使用request.getParameter("sampleSingleValue"); 
  • 相关阅读:
    MongoDB 查询$关键字 $in $or $all
    MongoDB limit 选取 skip跳过 sort排序 方法
    POJ 1700
    POJ 1666
    POJ 1701
    POJ 1674
    POJ 1664
    POJ 1665
    POJ 1658
    POJ 1656
  • 原文地址:https://www.cnblogs.com/beijingstruggle/p/5661020.html
Copyright © 2011-2022 走看看