input alt 屬性,如果由于某種原因(由于連接緩慢,src屬性錯(cuò)誤或用戶使用屏幕閱讀器)而無(wú)法查看圖像,則alt屬性為用戶提供替代文本。alt屬性只能與 <input type=image>一起使用。
HTML表單,submit使用圖像作為“提交”按鈕:
<!DOCTYPE html> <html> <head> <title>HTML:<input> alt 屬性 - 菜鳥(niǎo)教程(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> <p>單擊圖像,輸入將被發(fā)送到服務(wù)器上名為“action_page.php”的頁(yè)面。</p> <p>注意:圖像輸入類型默認(rèn)將激活圖像按鈕的單擊的X和Y坐標(biāo)發(fā)送。</p> </body> </html>測(cè)試看看 ?/?
IEFirefoxOperaChromeSafari
所有主流瀏覽器都支持 alt 屬性。
如果由于某種原因(由于連接緩慢,src屬性錯(cuò)誤或用戶使用屏幕閱讀器)而無(wú)法查看圖像,則alt屬性為用戶提供代替文本。
注意: alt屬性只能與<input type ="image">一起使用。
沒(méi)有。
<input alt="text">
值 | 描述 |
---|---|
text | 規(guī)定圖像的代替文本。 |