Das Beispiel in diesem Artikel beschreibt die Methode zum dynamischen Ändern der URL (src) eines Bildes mithilfe von JS. Teilen Sie es als Referenz mit allen. Die Details lauten wie folgt:
Der folgende JS-Code kann die Bildadresse dynamisch ändern, um ein neues Bild anzuzeigen. Dies wird tatsächlich durch Ändern des src-Attributs des Bildes erreicht
<!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>
Ich hoffe, dass dieser Artikel für das JavaScript-Programmierdesign aller hilfreich sein wird.