Programmatically change the src of an img tag

后端 未结 9 1631
执念已碎
执念已碎 2020-11-22 04:31

How can I change the src attribute of an img tag using javascript?


         


        
9条回答
  •  囚心锁ツ
    2020-11-22 05:30

    if you use the JQuery library use this instruction:

    $("#imageID").attr('src', 'srcImage.jpg');
    

提交回复
热议问题