Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.8k views
in Technique[技术] by (71.8m points)

javascript - How can you access a image attribute inside a div? JQuery

Hey need to solve a very quick issue. I have the following script:

jQuery(function($){ 
    $(window).scroll(function (){
        if ($(this).scrollTop() > 1){ 
            $('.logo-customizer').attr('src','http://13.36.14.143/wp-content/uploads/2021/01/cropped-ssssssss-1.png');
        }
        if ($(this).scrollTop() < 1000){ 
            $('.logo-customizer').attr('src','http://13.36.14.143/wp-content/uploads/2021/01/cropped-ssssssss.png');
        }
    })
});

And I want that when i scroll down the page, the image gets changed. For now, the image gets changed, but it gets changed on the div attribute and not the img attribute inside the div:

This is the HTML code:

<div class="logo-customizer" src="http://13.36.14.143/wp-content/uploads/2021/01/cropped-ssssssss-1.png"><img src="https://13.36.14.143/wp-content/uploads/2021/01/cropped-ssssssss.png" alt="Starford" width="120" height="35"></div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try especifing the sub-element in the selector

jQuery(function($){ 
    $(window).scroll(function (){
        if ($(this).scrollTop() > 1){ 
            $('.logo-customizer img').attr('src','http://13.36.14.143/wp-content/uploads/2021/01/cropped-ssssssss-1.png');
        }
        if ($(this).scrollTop() < 1000){ 
            $('.logo-customizer img').attr('src','http://13.36.14.143/wp-content/uploads/2021/01/cropped-ssssssss.png');
        }
    })
});

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...