change img src on click

前端 未结 5 1152
感动是毒
感动是毒 2020-12-06 02:08

I have searched the forum for one particular issue, yet all the solutions I found do not work for my problem.

I have an image on the left hand side. On the right han

5条回答
  •  佛祖请我去吃肉
    2020-12-06 02:34

    It all looks good for the second version, make sure you are wrapping your DOM calls in the document ready function, which can be written as...

    $(document).ready(function() {
        ...
    });
    

    Or...

    $(function() {
        ...
    });
    

    So you get...

    $(function() {
        $('#mtl').click(function(){
            $('#picture').attr('src', 'images/short.png');
        });
    });
    

提交回复
热议问题