2013-01-01 90 views
3


我有一個提交按鈕,我想在該按鈕上顯示圖像(a.jpg),並且不顯示提交按鈕的值。在「提交」類型按鈕的情況下可以嗎? (不是「type ='image'」)如何在提交按鈕上顯示圖像?

<input type="submit" value="submit" /> 

- 謝謝。

+1

您是否嘗試過使用'<按鈕類型= 「提交」>'呢? – Nick

+0

爲什麼不使用'type =「image」'並在click事件上提交表單? – David

+0

是的,沒有工作 – user1844626

回答

4

您可以使用CSS樣式按鈕approprately

​<input id="it" type="submit" value="Submit">​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​ 
​#it{ 
    background-image:url(http://placehold.it/50x50); 
    font-size:0; 
    width:50px; 
    height:50px; 
}​ 

DEMO

+0

中工作。感謝您的幫助... – user1844626

2
<button type="submit" name="foo" value="bar"> 
    <img src="image.png" alt="submit"> 
</button> 
+0

此選項具有跨瀏覽器問題,例如在您的解決方案的ipad –