共用方式為


HtmlImage.Alt 屬性

定義

取得或設定瀏覽器在沒有影像或目前正在下載而尚未完成時,要顯示的替代標題。

public:
 property System::String ^ Alt { System::String ^ get(); void set(System::String ^ value); };
public string Alt { get; set; }
member this.Alt : string with get, set
Public Property Alt As String

屬性值

字串,包含瀏覽器的替代標題,以備沒有影像時使用。

範例

下列程式碼範例示範如何使用 Alt 屬性來指定標題,以在屬性指定的 Src 影像無法使用時顯示。

<%@ Page Language="C#" AutoEventWireup="True" %>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
 <head>
    <title>HtmlImage Example</title>
</head>
 
 <body>
 
    <form id="form1" runat="server">
 
       <h3>HtmlImage Example</h3>
     
       <img id ="Image1"
            src="Image1.jpg"
            alt="Image 1"
            runat="server"
            style="width:500; height:226; border:5; text-align:center" />
    
    </form>
 
 </body>
 </html>
<%@ Page Language="VB" AutoEventWireup="True" %>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
 <head>
    <title>HtmlImage Example</title>
</head>
 
 <body>
 
    <form id="form1" runat="server">
 
       <h3>HtmlImage Example</h3>
     
       <img id ="Image1"
            src="Image1.jpg"
            alt="Image 1"
            runat="server"
            style="width:500; height:226; border:5; text-align:center" />
    
    </form>
 
 </body>
 </html>

備註

使用這個屬性來指定屬性所 Src 指定影像無法使用時所顯示的標題。 在較新的瀏覽器中,此標題也會顯示為工具提示。

適用於

另請參閱