最新的Web開發教程
 

HTML <input> src Attribute

<HTML <input>標籤

一個HTML表單與代表提交按鈕的圖像:

<form action="demo_form.asp">
  First name: <input type="text" name="fname"><br>
  <input type="image" src="submit.gif" alt="Submit">
</form>
試一試»

定義和用法

src屬性指定圖像的URL作為一個提交按鈕來使用。

注意: src屬性需要<input type="image"> ,且只能與使用<input type="image">


瀏覽器支持

在表中的數字指定完全支持屬性所述第一瀏覽器的版本。

屬性
src 1.0 2.0 1.0 1.0 1.0

HTML 4.01和HTML5之間的差異

沒有。


句法

<input src="URL">

屬性值

描述
URL 指定圖像的URL作為一個提交按鈕來使用。

可能的值:

  • 絕對URL -指向另一個網站(如src="http://www.example.com/submit.gif"
  • 相對URL -指向一個文件的Web站點內(如src="submit.gif"

<HTML <input>標籤