input src屬性指定用作提交按鈕的圖像的URL,src屬性對于 <input type ='image'>是必需的,并且只能與 <input type ='image'>一起使用。
一個HTML表單,其中包含代表“submit”按鈕的圖像:
<!DOCTYPE html> <html> <head> <title>HTML:<input> src 屬性 - 菜鳥教程(cainiaoplus.com)</title> <body> <form action="action_page.php"> First name: <input type="text" name="fname"><br> <input type="image" src="submit.gif" alt="Submit" width="48" height="48"> </form> </html>測試看看 ?/?
單擊圖像,輸入將被發(fā)送到服務(wù)器上名為“action_page.php”的頁面。
注意:圖像輸入類型默認(rèn)將激活圖像按鈕的單擊的X和Y坐標(biāo)發(fā)送。
IEFirefoxOperaChromeSafari
所有主流瀏覽器都支持 src 屬性。
src屬性指定用作提交按鈕的圖像的URL。
注意: src屬性對于<input type ='image'>是必需的,并且只能與<input type ='image'>一起使用。
沒有。
<input src="URL">
值 | 描述 |
---|---|
URL | 指定圖像的URL作為一個使用提交按鈕。 可能的值: 絕對URL - 指向另一網(wǎng)站(如SRC =“http://www.example.com/submit.gif”) 相對URL - 指向一個網(wǎng)站內(nèi)的文件(如SRC =“submit.gif”) |