目录

HTML DOM img 对象


图片对象

Image 对象表示 HTML <img> 元素。

访问图片对象

您可以使用 getElementById() 访问 <img> 元素:

示例

var x = document.getElementById("myImg");
亲自试一试 »

提示:您还可以使用以下命令访问 <img> 元素图片收藏。

创建图片对象

您可以使用 document.createElement() 方法创建 <img> 元素:

示例

var x = document.createElement("IMG");
亲自试一试 »

图片对象属性

Property Description
align Not supported in HTML5. Use style.cssFloat instead.
Sets or returns the value of the align attribute of an image
alt Sets or returns the value of the alt attribute of an image
border Not supported in HTML5. Use style.border instead.
Sets or returns the value of the border attribute of an image
complete Returns whether or not the browser is finished loading an image
crossOrigin Sets or returns the CORS settings of an image
height Sets or returns the value of the height attribute of an image
hspace Not supported in HTML5. Use style.margin instead.
Sets or returns the value of the hspace attribute of an image
isMap Sets or returns whether an image should be part of a server-side image-map, or not
longDesc Not supported in HTML5.
Sets or returns the value of the longdesc attribute of an image
lowsrc Not supported in HTML5.
Sets or returns a URL to a low-resolution version of an image
name Not supported in HTML5. Use id instead.
Sets or returns the value of the name attribute of an image
naturalHeight Returns the original height of an image
naturalWidth Returns the original width of an image
src Sets or returns the value of the src attribute of an image
useMap Sets or returns the value of the usemap attribute of an image
vspace Not supported in HTML5. Use style.margin instead.
Sets or returns the value of the vspace attribute of an image
width Sets or returns the value of the width attribute of an image

标准属性和事件

Image 对象还支持标准特性事件


相关页面

HTML 教程:HTML 图片

HTML 参考:HTML <img> 标签