Getting img.src value (path name)

前端 未结 2 568
轮回少年
轮回少年 2021-01-13 03:34

I have a form for a registration page. The form contains an image that changes its src dependant on a situation. Within a script which activates upon submission of the form

2条回答
  •  囚心锁ツ
    2021-01-13 04:21

    Add an ID tag to your image (if it doesn't already have one), eg:

    
    

    Then you can reference it as follows:

    if (document.getElementById("imageId").src == "pictures/apic.png")
    {
        ...
    }
    

    EDIT

    Working example here: http://jsfiddle.net/2Wtkn/2/

提交回复
热议问题