JQuery hidden objects

前端 未结 4 537
夕颜
夕颜 2021-01-29 11:27

Ok guys, I have edited the question so that you can understand. I have 10 images and their respective name in paragraph. So, you have 10 images and 10 paragraphs. As the images

4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-29 11:39

    Your code should be something like that if i correctly understand your question.

    So, if i get it, you can do something like that, assuming you add a class (lets say myimgclass) to all your images you want to check:

    Your code should be something like that if i correctly understand your question.

    So, if i get it, you can do something like that, assuming you add a class (lets say myimgclass) to all your images you want to check:

    $(document).ready(function() {
        $('.myimgclass').click(function() {
            //hide >>name here<<
    
            $(this).hide('slow', function() {
                var check = true;
                $('.myimgclass').each(function() {                
                    //we check if image is visible, if so we stop here
                    if($(this).is(':visible')) {
                        check = false;
                        return;
                    }
                });
                if(check) alert('Hello');
            });
        });
    
    });​
    

    See http://jsfiddle.net/s7FXR/

提交回复
热议问题