2014-07-22 178 views
2

我在提交和返回按鈕上使用圖像。Jsp提交按鈕圖像

當我點擊提交,圖像參數如b1.x=66b1.y =6以及其他參數。

如何停止只發送圖像參數從一個發送到其他jsp頁面。

請恢復。

代碼

<html> 
<body> 
    <form> 
    <table> 
     <tr> 
      <td colspan=2> 
       <i> 
        <b>Please verify the information entered , click Submit to make the payments otherwise click Back to modify details <br> <br> </b> 
       </i> 
       </font> 
      </td> 
     </tr> 
     <tr> 
      <td align=middle colSpan=2> 
       <input type="image" name="b1" src="/mpt/images/submit.gif" border=0 value="success"> &nbsp;&nbsp;&nbsp;&nbsp; 
       <a href="javascript:history.go(-1)"> 
        <img src="/mpt/images/backbutton.gif" border="0" alt="Click to Edit The Information You Entered "> 
       </a> 
      </td> 
     </tr> 
    </table> 
    </form> 
</body> 
</html> 

回答

4

它的默認行爲的<input type="image">它將把鼠標座標,我不認爲這樣就可以防止它。您可以忽略這些參數並照常訪問其他參數。

如果你真的不想要這些參數,你可以使用<input type="submit">並使用樣式添加圖像作爲背景,如下所示。

<input type="submit" id="bi" 
    style="background-image: url("/mpt/images/submit.gif"); border: solid 0px #000000; width: 150px; height: 22px;" /> 

調整高度和寬度以適合圖像。