2013年4月14日 星期日

JSP - 將值傳到下一個頁面

abc.html
<form id="form" action="a.jsp">
<select name="sel" onChange="submit();">
    <option value="a">a
    <option value="b">b
    <option value="c">c
</select>
</form>
<script type="text/javascript">
function submit()
{
    document.getElementById("form").submit();
}
</script>

a.jsp

<%
    String str=request.getParameter("sel");
    out.print(str);
%>

ref: Here

沒有留言:

張貼留言