--- title: HTMLImageElement slug: Web/API/HTMLImageElement translation_of: Web/API/HTMLImageElement ---
{{APIRef("HTML DOM")}}

HTMLImageElement 介面提供了特殊的屬性及方法以用來操作 {{HTMLElement("img")}} 元素的畫面佈局與外觀呈現。

{{InheritanceDiagram(600,120)}}

屬性

Inherits properties from its parent, {{domxref("HTMLElement")}}.

{{domxref("HTMLImageElement.align")}} {{obsolete_inline}}
Is a {{domxref("DOMString")}} indicating the alignment of the image with respect to the surrounding context.
{{domxref("HTMLImageElement.alt")}}
Is a {{domxref("DOMString")}} that reflects the {{htmlattrxref("alt", "img")}} HTML attribute,  thus indicating fallback context for the image.
{{domxref("HTMLImageElement.border")}} {{obsolete_inline}}
Is a {{domxref("DOMString")}} that is responsible for the width of the border surrounding the image. This is now deprecated and the CSS {{cssxref("border")}} property should be used instead.
{{domxref("HTMLImageElement.complete")}} {{readonlyInline}}
Returns a {{domxref("Boolean")}} that is true if the browser has finished fetching the image, whether successful or not. It also shows true, if the image has no {{domxref("HTMLImageElement.src", "src")}} value.
{{domxref("HTMLImageElement.crossOrigin")}}
Is a {{domxref("DOMString")}} representing the CORS setting for this image element. See CORS settings attributes for further details.
{{domxref("HTMLImageElement.currentSrc")}} {{readonlyInline}}{{experimental_inline}}
Returns a {{domxref("DOMString")}} representing the URL to the currently displayed image (which may change, for example in response to media queries).
{{domxref("HTMLImageElement.height")}}
一個反映了 HTML img 元素之 {{htmlattrxref("height", "img")}} 屬性的無符號(unsigned)整數,表示圖片經渲染後的高度(CSS pixels)。
{{domxref("HTMLImageElement.hspace")}} {{obsolete_inline}}
Is a long representing the space on either side of the image.
{{domxref("HTMLImageElement.isMap")}}
Is a {{domxref("Boolean")}} that reflects the {{htmlattrxref("ismap", "img")}} HTML attribute, indicating that the image is part of a server-side image map.
{{domxref("HTMLImageElement.longDesc")}} {{obsolete_inline}}
Is a {{domxref("DOMString")}} representing the URI of a long description of the image.
{{domxref("HTMLImageElement.lowSrc")}} {{obsolete_inline}}
Is a {{domxref("DOMString")}} that refers to a low-quality (but faster to load) copy of the image.
{{domxref("HTMLImageElement.name")}} {{obsolete_inline}}
Is a {{domxref("DOMString")}} representing the name of the element.
{{domxref("HTMLImageElement.naturalHeight")}} {{readonlyInline}}
回傳一個代表圖片固有高度(CSS pixels)的無符號(unsigned)整數,如果無法取得則回傳 0
{{domxref("HTMLImageElement.naturalWidth")}} {{readonlyInline}}
回傳一個代表圖片固有寬度(CSS pixels)的無符號(unsigned)整數,如果無法取得則回傳 0
{{domxref("HTMLImageElement.referrerPolicy")}} {{experimental_inline}}
Is a {{domxref("DOMString")}} that reflects the {{htmlattrxref("referrerpolicy", "img")}} HTML attribute indicating which referrer to use in order to fetch the image.
{{domxref("HTMLImageElement.src")}}
Is a {{domxref("DOMString")}} that reflects the {{htmlattrxref("src", "img")}} HTML attribute, containing the full URL of the image including base URI.
{{domxref("HTMLImageElement.sizes")}} {{experimental_inline}}
Is a {{domxref("DOMString")}} reflecting the {{htmlattrxref("sizes", "img")}} HTML attribute.
{{domxref("HTMLImageElement.srcset")}} {{experimental_inline}}
Is a {{domxref("DOMString")}} reflecting the {{htmlattrxref("srcset", "img")}} HTML attribute, containing a list of candidate images, separated by a comma (',', U+002C COMMA). A candidate image is a URL followed by a 'w' with the width of the images, or an 'x' followed by the pixel density.
{{domxref("HTMLImageElement.useMap")}}
Is a {{domxref("DOMString")}} that reflects the {{htmlattrxref("usemap", "img")}} HTML attribute, containing a partial URL of a map element.
{{domxref("HTMLImageElement.vspace")}} {{obsolete_inline}}
Is a long representing the space above and below the image.
{{domxref("HTMLImageElement.width")}}
一個反映了 HTML img 元素之 {{htmlattrxref("width", "img")}} 屬性的無符號(unsigned)整數,表示圖片經渲染後的寬度(CSS pixels)。
{{domxref("HTMLImageElement.x")}} {{readonlyInline}}{{experimental_inline}}
Returns a long representing the horizontal offset from the nearest layer. This property mimics an old Netscape 4 behavior.
{{domxref("HTMLImageElement.y")}} {{readonlyInline}} {{experimental_inline}}
Returns a long representing the vertical offset from the nearest layer. This property is also similar to behavior of an old Netscape 4.

方法

Inherits properties from its parent, {{domxref("HTMLElement")}}.

{{domxref("HTMLImageElement.Image()", "Image()")}}
The Image() constructor, taking two optional unsigned long, which are the width and the height of the resource, creates an instance of HTMLImageElement , not inserted in a DOM tree.

Errors

If an error occurs while trying to load or render the image, and an {{htmlattrxref("onerror")}} event handler has been configured to handle the {{event("error")}} event, that event handler will get called. This can happen in a number of situations, including:

範例

var img1 = new Image(); // HTML5 Constructor
img1.src = 'image1.png';
img1.alt = 'alt';
document.body.appendChild(img1);

var img2 = document.createElement('img'); // use DOM HTMLImageElement
img2.src = 'image2.jpg';
img2.alt = 'alt text';
document.body.appendChild(img2);

// using first image in the document
alert(document.images[0].src);

規範

Specification Status Comment
{{SpecName('Referrer Policy', '#referrer-policy-delivery-referrer-attribute', 'referrer attribute')}} {{Spec2('Referrer Policy')}} Added the referrerPolicy property.
{{SpecName("CSSOM View", "#excensions-to-the-htmlimageelement-interface", "Extensions to HTMLImageElement")}} {{Spec2('CSSOM View')}} Added the x and y properties.
{{SpecName('HTML WHATWG', "embedded-content.html#the-img-element", "HTMLImageElement")}} {{Spec2('HTML WHATWG')}} The following properties have been added: srcset, currentSrc and sizes.
{{SpecName('HTML5 W3C', "embedded-content-0.html#the-img-element", "HTMLImageElement")}} {{Spec2('HTML5 W3C')}} A constructor (with 2 optional parameters) has been added.
The following properties are now obsolete: name, border, align, hspace, vspace, and longdesc.
The following properties are now unsigned long, instead of long: height, and width.
The following properties have been added: crossorigin, naturalWidth, naturalHeight, and complete.
{{SpecName('DOM2 HTML', 'html.html#ID-17701901', 'HTMLImgElement')}} {{Spec2('DOM2 HTML')}} The lowSrc property has been removed.
The following properties are now long, instead of DOMString: height, width, hspace, and vspace.
{{SpecName('DOM1', 'level-one-html.html#ID-17701901', 'HTMLImgElement')}} {{Spec2('DOM1')}} Initial definition.

瀏覽器相容性

{{CompatibilityTable}}
Feature Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatGeckoDesktop(1.0)}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
lowSrc {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
naturalWidth, naturalHeight {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} 9 {{CompatVersionUnknown}} {{CompatVersionUnknown}}
crossorigin {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} 9 {{CompatVersionUnknown}} {{CompatVersionUnknown}}
complete {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} 5[4] {{CompatVersionUnknown}} {{CompatVersionUnknown}}
srcset {{experimental_inline}} {{CompatChrome(34)}} {{CompatVersionUnknown}} {{CompatGeckoDesktop(32)}}[2] {{CompatNo}} 21 {{CompatSafari(7.1)}}
currentSrc {{experimental_inline}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatGeckoDesktop(32)}}[2] {{CompatNo}} {{CompatVersionUnknown}} {{CompatNo}}
sizes {{experimental_inline}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatGeckoDesktop(33)}}[3] {{CompatNo}} {{CompatVersionUnknown}} {{CompatNo}}
x and y {{CompatVersionUnknown}} {{CompatVersionUnknown}} 14[1] {{CompatNo}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
referrerPolicy {{experimental_inline}} {{CompatChrome(51)}} {{CompatNo}} {{CompatGeckoDesktop(50)}} {{CompatNo}} {{CompatNo}} {{CompatNo}}
onerror event handler {{CompatNo}} {{CompatUnknown}} {{CompatGeckoDesktop(51)}}[5] {{CompatNo}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
Feature Android Webview Chrome for Android Edge Firefox Mobile (Gecko) IE Phone Opera Mobile Safari Mobile
Basic support {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatGeckoMobile(1.0)}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
lowSrc {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}}
naturalWidth, naturalHeight {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatUnknown}} 9 {{CompatUnknown}} {{CompatVersionUnknown}}
crossorigin {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatVersionUnknown}}
complete {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatVersionUnknown}}
srcset {{experimental_inline}} {{CompatChrome(34)}} {{CompatChrome(34)}} {{CompatVersionUnknown}} {{CompatGeckoMobile(32)}}[2] {{CompatNo}} {{CompatNo}} iOS 8
currentSrc {{experimental_inline}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatGeckoMobile(32)}}[2] {{CompatNo}} {{CompatNo}} {{CompatNo}}
sizes {{experimental_inline}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatGeckoMobile(33)}}[3] {{CompatNo}} {{CompatNo}} {{CompatNo}}
x and y {{CompatVersionUnknown}} {{CompatVersionUnknown}} {{CompatVersionUnknown}} 14[1] {{CompatNo}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}
referrerPolicy {{experimental_inline}} {{CompatChrome(51)}} {{CompatChrome(51)}} {{CompatNo}} {{CompatGeckoMobile(50)}} {{CompatNo}} {{CompatNo}} {{CompatNo}}
onerror event handler {{CompatNo}} {{CompatNo}} {{CompatUnknown}} {{CompatGeckoMobile(51)}} {{CompatNo}} {{CompatVersionUnknown}} {{CompatVersionUnknown}}

[1] Though, these x and y properties were removed in Gecko 7.0 {{geckoRelease("7.0")}} but later, they were restored in Gecko 14.0 {{geckoRelease("14.0")}} for compatibility reasons.

[2] This feature is behind the dom.image.srcset.enabled preference, defaulting to false.

[3] This feature is behind the dom.image.picture.enabled preference, defaulting to false.

[4] IE reports false for broken images.

[5] May also be supported in earlier versions.

See also