当前位置: 首页 > 网络学院 > 客户端脚本教程 > HTML DOM > HTML DOM alt属性
The alt property sets or returns an alternate text to be displayed, if a browser cannot show an image.
当浏览器不能展示图片,alt属性可设置或返回要显示的替换文字
imageObject.alt=alternate_text |
The following example changes the alternate text of an image:
下面的举例可以改变图片的替换文字:
<html> <img id="compman" src="compman.gif" alt="Computerman" /> </body> |
Change the alternate text of an image
改变图片的替换文字