Programmatically change the src of an img tag

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

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


         


        
相关标签:
9条回答
  • 2020-11-22 05:32

    Maybe because you have a tag like a parent of the tag. That why you have to click two time the images.

    For me the solution is this: http://www.w3schools.com/js/tryit.asp?filename=tryjs_intro_lightbulb

    0 讨论(0)
  • 2020-11-22 05:34

    Give your img tag an id, then you can

    document.getElementById("imageid").src="../template/save.png";
    
    0 讨论(0)
  • 2020-11-22 05:35

    Give your image an id. Then you can do this in your javascript.

    document.getElementById("blaah").src="blaah";
    

    You can use the ".___" method to change the value of any attribute of any element.

    0 讨论(0)
提交回复
热议问题