Image alt 屬性
Image 對象定義和用法
alt 屬性可設(shè)置或者返回圖片的 alt 屬性值。
alt 屬性指定圖像不能正常顯示(網(wǎng)速慢、圖片鏈接錯誤)后顯示的替換文本。
注意: Internet Explorer瀏覽器在鼠標(biāo)移到img元素后會顯示提示文本,這是不規(guī)范的, 根據(jù)HTML規(guī)范。所有其他的瀏覽器只在圖片無法顯示時顯示alt文本 顯示。
提示: 如果你想創(chuàng)建一個圖片工具條,請使用title屬性。
語法
imageObject.alt=text
瀏覽器支持
所有主要瀏覽器都支持 alt 屬性
實例
實例
返回圖片的替換文本:
<html>
<body>
<img id="compman" src="compman.gif" alt="Crazy computerman">
<p>The value of the alt atrribute is:
<script>
document.write(document.getElementById("compman").alt);
</script>
</p>
</body>
</html>
<body>
<img id="compman" src="compman.gif" alt="Crazy computerman">
<p>The value of the alt atrribute is:
<script>
document.write(document.getElementById("compman").alt);
</script>
</p>
</body>
</html>
嘗試一下 ?
Image 對象
更多建議: