程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> JSP結合js實現img中src更新請求的方法,imgsrc

JSP結合js實現img中src更新請求的方法,imgsrc

編輯:關於JSP

JSP結合js實現img中src更新請求的方法,imgsrc


本文實例講述了JSP結合js實現img中src更新請求的方法。分享給大家供大家參考。具體如下:

1.javascript(更新的函數)

<script type="text/javascript"> 
function changeImage(){ 
  var img = document.getElementById("imgVcode");
  if(img.name == 1){ 
    img.name = 2; 
    img.src = "shop.do?method=registerImage2";
  }else if(img.name == 2){ 
    img.name = 1; 
    img.src = "shop.do?method=registerImage";
  } 
} 
</script>

2.jsp中img和img改變的代碼

<td> 
  <img class="yzm_img" id='imgVcode' name="1" src="shop.do?method=registerImage" />
  <input name="code" type="text" id="txtVerifyCode" 
    class="yzm_input" onblur="testCode(this)"/>
  <div class="text_left t1">
    <p class="t1">
      <span id="vcodeValidMsg">請輸入圖片中的四個字母。</span> 
      <span id="codeInfo" ></span> 
      <a href="#" id="imgchange" onclick="changeImage()">看不清楚?換個圖片</a>
    </p> 
  </div> 
</td>

3.後台action代碼

public ActionForward registerImage(ActionMapping mapping, ActionForm form, 
   HttpServletRequest request, HttpServletResponse response)
    throws Exception { 
    //將image創建,返回認證碼 
    response.setContentType("image/jpeg"); 
    OutputStream out = response.getOutputStream(); 
    String strEnsure = shopManager.createImageInfo(50,20,out);
    //設置到session中 
    request.getSession().setAttribute("strEnsure", strEnsure);
    return null; 
  } 
  public ActionForward registerImage2(ActionMapping mapping, ActionForm form, 
      HttpServletRequest request, HttpServletResponse response)
      throws Exception { 
    //將image創建,返回認證碼 
    response.setContentType("image/jpeg"); 
    OutputStream out = response.getOutputStream(); 
    String strEnsure = shopManager.createImageInfo(50,20,out);
    //設置到session中 
    request.getSession().setAttribute("strEnsure", strEnsure);
    return null; 
} 

希望本文所述對大家的JavaScript程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved