当前位置: 首页 > 网络学院 > 客户端脚本教程 > HTML DOM > HTML DOM src属性
The src property sets or returns the URL of an image.
src属性可设置或返回图片的URL
Note: This property can be changed at any time. However, the new image inherits the height and width attributes of the original image.
注意:这个属性能在任何时间进行改变。但是新的图片会继承原始图片的高度和宽度属性。
imageObject.src=URL |
<html> <img id="myImage" src="compman.gif" width="107" height="98" /> </body> |
Change the src of an image
改变图片的src