简体   繁体   中英

jQuery Show image in a div with a third click

function () {
    var i = 0;
    $('.class').click(i=i+1)
        if(i=3) {
            $('.class2').css('display','block');
        }
    }

This code does not work, Please help me.

You should bind your click event outside the function, and then track the 3rd click. You should also use a comparison operator instead of assignment. Of course, all of this should be wrapped in document ready.

var i = 0;
$('.class').on('click', function() {
   i = i + 1;
   if(i === 3) {
       $('.class2').css('display','block');
   }
});

Here is a Fiddle Demo .

Should be :

$(function() { //ready function
    var i = 0;

    $('.class').click(function(){ //Attach click event to '.class'
        i=i+1; //Or i++;

        if(i===3) { //Use triple equal '===' for comparaison
            $('.class2').css('display','block');
        }
    })
})

Hope this helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM