This article describes the method of dynamically modifying the URL (src) of an image. Share it for your reference. The details are as follows:
The following JS code can dynamically modify the image address to display a new image, which is actually achieved by modifying the src attribute of the image.
<!DOCTYPE html> <html> <head> <script> function changeSrc() { ("myImage").src=""; } </script> </head> <body> <img src="" 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.