2

ホバーでポップアップを開くが、ページの残りの部分または閉じるボタンをクリックしたときにのみ閉じる

$('#promo').mouseover(function() {

        $('#promoarrow').show();

    });

    $('#closebtn').click(function() {

        $('#promoarrow').hide();

    });

ここにフィドルがあります: http://jsfiddle.net/YFY5g/16/

4

1 に答える 1

1

これ欲しい??

$(document).click(function (e) {
    if (e.target)
        target = e.target;
    else if (e.srcElement)
        target = e.srcElement;
    else
        target = e.currentTarget;

    if (target.id != 'promoarrow') $('#promoarrow').hide(); 
});
于 2013-01-27T14:15:33.220 に答える