HTMLImageElement.currentSrc - Web APIs 编辑

The read-only HTMLImageElement property currentSrc indicates the URL of the image which is currently presented in the <img> element it represents.

Syntax

let currentSource = htmlImageElement.currentSrc;

Value

A USVString indicating the full URL of the image currently visible in the <img> element represented by the HTMLImageElement. This is useful when you provide multiple image options using the sizes and/or HTMLImageElement.srcset properties. currentSrc lets you determine which image from the set of provided images was selected by the browser.

Example

In this example, two different sizes are provided for an image of a clock. One is 200px wide and the other is 400px wide. The sizes attribute is provided to indicate that the image should be drawn at 50% of the document width if the viewport is under 400px wide; otherwise, the image is drawn at 90% width of the document.

HTML

 <img src="/files/16797/clock-demo-400px.png"
      alt="Clock"
      srcset="/files/16864/clock-demo-200px.png 200w, /files/16797/clock-demo-400px.png 400w"
      sizes="(max-width: 400px) 50%, 90%">

JavaScript

var clockImage = document.querySelector("img");
let p = document.createElement("p");

if (!clockImage.currentSrc.endsWith("200px.png")) {
  p.innerText = "Using the 200px image.";
} else {
  p.innerText = "Using the 400px image!";
}
document.body.appendChild(p);

Result

Specifications

SpecificationStatusComment
HTML Living Standard
The definition of 'HTMLImageElement.currentSrc' in that specification.
Living Standard

Browser compatibility

BCD tables only load in the browser

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:127 次

字数:3668

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文