最新的Web开发教程
 

图片src属性

图像对象参考 图像对象

改变图像的URL:

document.getElementById("myImg").src = "hackanm.gif";
试一试»

定义和用法

SRC属性设置或返回的值src图像的属性。

所需的src属性指定图像的URL。

注意:的src属性可以在任何时候被改变。 然而,新的图像继承了原始图像的高度和宽度的属性,如果不是新的高度宽度属性来指定。


浏览器支持

属性
src

句法

返回src属性:

imageObject .src

设置src属性:

imageObject .src= URL

属性值

Value Description
URL Specifies the URL of the image.

Possible values:
  • An absolute URL - points to another web site (like src="http://www.example.com/default.htm")
  • A relative URL - points to a file within a web site (like src="default.htm")

技术细节

返回值: 一个String,表示图像的URL。 返回整个URL,包括协议(如http://)

更多示例

返回图像的URL:

var x = document.getElementById("myImg").src;

x的结果将是:

http://www.w3ii.com/jsref/compman.gif
试一试»

相关页面

HTML参考: HTML <img> src属性


图像对象参考 图像对象