主頁 > 知識庫 > JSP結(jié)合js實(shí)現(xiàn)img中src更新請求的方法

JSP結(jié)合js實(shí)現(xiàn)img中src更新請求的方法

熱門標(biāo)簽:北票市地圖標(biāo)注 杭州語音電銷機(jī)器人軟件 電銷機(jī)器人是有一些什么技術(shù) 高德地圖標(biāo)注樣式 地圖標(biāo)注線上教程 電銷機(jī)器人好賣么 四川保險智能外呼系統(tǒng)商家 杭州ai語音電銷機(jī)器人功能 商洛電銷

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

1.javascript(更新的函數(shù))

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" style="color:red">/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創(chuàng)建,返回認(rèn)證碼 
    response.setContentType("image/jpeg"); 
    OutputStream out = response.getOutputStream(); 
    String strEnsure = shopManager.createImageInfo(50,20,out);
    //設(shè)置到session中 
    request.getSession().setAttribute("strEnsure", strEnsure);
    return null; 
  } 
  public ActionForward registerImage2(ActionMapping mapping, ActionForm form, 
      HttpServletRequest request, HttpServletResponse response)
      throws Exception { 
    //將image創(chuàng)建,返回認(rèn)證碼 
    response.setContentType("image/jpeg"); 
    OutputStream out = response.getOutputStream(); 
    String strEnsure = shopManager.createImageInfo(50,20,out);
    //設(shè)置到session中 
    request.getSession().setAttribute("strEnsure", strEnsure);
    return null; 
} 

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

您可能感興趣的文章:
  • img的src地址是一個請求的方式來顯示圖片方法

標(biāo)簽:宿州 貴州 江西 西藏 丹東 青島 云浮 紅河

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《JSP結(jié)合js實(shí)現(xiàn)img中src更新請求的方法》,本文關(guān)鍵詞  JSP,結(jié)合,實(shí)現(xiàn),img,中,src,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《JSP結(jié)合js實(shí)現(xiàn)img中src更新請求的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于JSP結(jié)合js實(shí)現(xiàn)img中src更新請求的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章