Finding An image tag using the alt text

前端 未结 4 1438
终归单人心
终归单人心 2021-01-02 16:54

I would like to know if it was possible using Javascript to find an image tag by its alt text. For instance I have this tag: \"Myimage\

4条回答
  •  萌比男神i
    2021-01-02 17:36

    You can do this with JQuery. The following JQuery code will return any image with the alt tag set to "Myimage":

    $('img[alt="Myimage"]').
    

    However it would be a lot easier and a lot more performant to use the id attribute of the image tag.

提交回复
热议问题