JavaScript 中的 .src 是什么?

发布于 2024-10-09 10:52:22 字数 262 浏览 2 评论 0原文

下面的 JavaScript 代码中的 .src 是什么?

function jsDropDown(imgid,folder,newimg) {
    document.getElementById(imgid).src="http://www.cookwithbetty.com/" + folder + "/" + newimg + ".gif";
}

What is .src in the JavaScript code below?

function jsDropDown(imgid,folder,newimg) {
    document.getElementById(imgid).src="http://www.cookwithbetty.com/" + folder + "/" + newimg + ".gif";
}

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

乙白 2024-10-16 10:52:22

它是 src DOM 属性它正在处理的 元素。

It's the src DOM property of the <img> element that it's dealing with.

梦与时光遇 2024-10-16 10:52:22

它映射到 img 的 src 属性元素。 (虽然这是 DOM 而不是 JS)

It maps onto the src attribute of the img element. (Although this is DOM rather than JS)

我一直都在从未离去 2024-10-16 10:52:22

src 标签的属性,可以通过 javascript 访问来获取图片 url

src is the property of <img> tag and can be accessed by javascript to assing the image url

风柔一江水 2024-10-16 10:52:22

src在计算机编程中是源代码的常见缩写。

src is in computer programming, a common abbreviation for source code.

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