Thuộc tính HTML <input> src

❮ Thẻ HTML <input>

Thí dụ

Biểu mẫu HTML có hình ảnh đại diện cho nút gửi:

<form action="/action_page.php">
  <label for="fname">First name:</label>
  <input type="text" id="fname" name="fname"><br><br>
  <input type="image" src="submit.gif" alt="Submit" width="48" height="48">
</form>

Định nghĩa và Cách sử dụng

Thuộc srctính chỉ định URL của hình ảnh để sử dụng làm nút gửi.

Lưu ý: Chỉ srccó thể sử dụng thuộc tính với (và là bắt buộc đối với) <input type="image">.


Hỗ trợ trình duyệt

Các số trong bảng chỉ định phiên bản trình duyệt đầu tiên hỗ trợ đầy đủ thuộc tính.

Attribute
src Yes Yes Yes Yes Yes

Cú pháp

<input src="URL">

Giá trị thuộc tính

Value Description
URL Specifies the URL of the image to use as a submit button.

Possible values:

  • An absolute URL - points to another web site (like src="http://www.example.com/submit.gif")
  • A relative URL - points to a file within a web site (like src="submit.gif")

❮ Thẻ HTML <input>