Home  >  Article  >  Web Front-end  >  JS method to dynamically modify the URL (src) of an image_javascript skills

JS method to dynamically modify the URL (src) of an image_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:06:272265browse

The example in this article describes the method of dynamically modifying the URL (src) of an image using JS. Share it with everyone for your reference. The details are as follows:

The following JS code can dynamically modify the image address to display a new image. This is actually achieved by modifying the src attribute of the image

<!DOCTYPE html>
<html>
<head>
<script>
function changeSrc()
{
document.getElementById("myImage").src="hackanm.gif";
}
</script>
</head>
<body>
<img id="myImage" src="compman.gif" width="107" height="98">
<br><br>
<input type="button" onclick="changeSrc()" value="Change image">
<p><b>Note:</b> The src property can be changed at any time. 
However, the new image inherits the height and width
attributes of the original image,
if not new height and width properties are specified.</p>
</body>
</html>

I hope this article will be helpful to everyone’s JavaScript programming design.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn