agregar atributo html con id jquery code example
Example 1: agregar atributo con id jquery
$('.foto1').attr('src', 'img/perfil.png');
Example 2: agregar atributo html con id jquery
$('#foto1').attr('src', 'img/perfil.png');
$('.foto1').attr('src', 'img/perfil.png');
$('#foto1').attr('src', 'img/perfil.png');