當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML <input> src屬性用法及代碼示例


HTML <input> src屬性用於指定用作提交按鈕的圖像的URL。此屬性不適用於<input type =” image”>。

用法:

<input src="URL">

屬性值:它包含一個單值URL,該URL指定源圖像的鏈接。下麵列出了兩種類型的URL鏈接:


  • 絕對網址:它指向另一個網頁。
  • 相對網址:它指向同一網頁上的其他文件。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML Input src Attribute 
    </title> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
            GeeksForGeeks  
        </h1> 
  
    <h2>HTML Input src Attribute</h2> 
    <form> 
        <input id="myImage" 
               type="image" 
               src= 
"https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png" 
               alt="Submit"
               width="70"
               height="48" /> 
    </form> 
</body> 
  
</html>

輸出:

支持的瀏覽器:下麵列出了HTML <input> src屬性支持的瀏覽器:

  • 穀歌瀏覽器1.0
  • Internet Explorer 2.0
  • Firefox 1.0
  • 蘋果Safari 1.0
  • Opera 1.0


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <input> src Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。