JavaScript 中的 .src 是什么?
下面的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
它是
的
元素。src
DOM 属性它正在处理的It's the
src
DOM property of the<img>
element that it's dealing with.它映射到 img 的 src 属性元素。 (虽然这是 DOM 而不是 JS)
It maps onto the src attribute of the img element. (Although this is DOM rather than JS)
src
是标签的属性,可以通过 javascript 访问来获取图片 url
src
is the property of<img>
tag and can be accessed by javascript to assing the image urlsrc在计算机编程中是源代码的常见缩写。
src is in computer programming, a common abbreviation for source code.