JSP頁面傳值方式

來源:互聯網
上載者:User

幾種JSP頁面傳值方式:
1. 隱藏欄位傳值:
<form method="post" action="client_crud.jsp" >
<input type="hidden" name="id" value="<%=id %>">

2. URL傳值:
用button
a.
<input name="btnModify" type="button" class="button1" onClick="self.location='client_modify.jsp?id=<%=id %>'"
value="修改分銷商" />
b.把input的onClick=”modifyRegion()”
function modifyRegion() {
window.self.location = client_node_modify.jsp?id=<%=id%>";
}

3. JS方式傳值
//取得form對象提交表單
with(document.getElementById("userForm")) {
method="post";
action="user_add.jsp?command=add";
submit();
}
 
function searchItem() {
with(document.forms[0]) {
action="servlet/basedata/SearchItemServlet";
method="post";
submit();
}
}

----------------------------------------------------------------------------------------------------------------------------------------------------------

JSP的幾種參數傳值:
 
JSP的幾種參數傳值:
 
一、超連結
<a href="P.jsp?username=zhangshan&pwd=123456&age=25"> 連結</a>
 
二、forma表單
    1.可顯示的控制項
      <input type="text" name="username">
 
    2.如果要傳遞的值,不需要顯示在頁面上
      (1)<input type="hidden" name="pwd" value="<%=pwd%>">
      (2)<form action="XXX.jsp" method="post"></form>
 
三、JSP的include和forward標籤
    <jsp:include flush="true" page="T.jsp?username=zhangshan&pwd=123456678">
     <jsp:param name="age" value="28"/>
    </jsp:include>
 
四、javascript方式
    script type="text/javascript">
     function demo(){
  var v = document.all('username').value;
  location.replace("V.jsp?username="+v+"&age=25");
 }
    </script>
    <input type="text" name="username"><br>
    <input type="button" value="href點擊" onclick="location.href='V.jsp?pwd=123456'"><BR>
    <input type="button" value="replace點擊"
           onclick="location.replac('V.jsp?pwd=123456789')">
    <br>
   
    <input type="button" value="動態取值" onclick="demo()">

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.