0

我怎样才能使这项工作。

如果目标的父级是 .form_contact_div 则 console.log('keep open form');

我正在使用的代码,但它不适用于(else if)条件,仅适用于 if 和 else。

代码:

jQuery("body").click(function(e) {

    var target = jQuery(e.target);
    console.log(target);

    if(jQuery(target).parents('#contact-btn-div').length 
      && jQuery('#contact-btn-div').hasClass('close')) {
        console.log('keep open btn');
        jQuery("#form_contact_wrapper").animate({'left': '0px'});
        jQuery("#contact-btn-div").removeClass('close');
    }
    else if(jQuery(target).parent().is('.form_contact_div')) {
        console.log('keep open form');
        jQuery("#form_contact_wrapper").animate({'left': '0px'});
    }
    else{
        console.log('keep close');
        jQuery("#form_contact_wrapper").animate({'left': '-472px'});
        jQuery("#contact-btn-div").addClass('close');
    }
});
4

2 回答 2

0

检查编辑的代码。

<div id="contact-btn-div" class="close" style="width:300px; height:200px; border:1px solid #666; background-color:#F60;">

<div style="width:200px; height:100px; border:1px solid #0FC; background-color:#9CC;"></div>
</div>

和 Javascript,

$(function(){
$("body").click(function(e) {

var target = $(e.target);
console.log(target);

if(target.parent('#contact-btn-div').length 
  && $('#contact-btn-div').hasClass('close')) {
    console.log('keep open btn');
    $("#contact-btn-div").removeClass('close');
}

});
});

我想你会得到你需要的。干杯:)。

于 2013-06-06T05:29:43.117 回答
0

尝试用这个替换e.taget

var target = $(this);

因为您需要将单击的元素作为您的标记然后更好地使用它并且您的代码应该是这样的

jQuery("body").click(function(e) {

    var target = $(this);
    console.log(target);

    if(target.parent('#contact-btn-div').length 
      && jQuery('#contact-btn-div').hasClass('close')) {
        console.log('keep open btn');
        jQuery("#form_contact_wrapper").animate({'left': '0px'});
        jQuery("#contact-btn-div").removeClass('close');
    }
    else if(target.parent().is('.form_contact_div')) {
        console.log('keep open form');
        jQuery("#form_contact_wrapper").animate({'left': '0px'});
    }
    else{
        console.log('keep close');
        jQuery("#form_contact_wrapper").animate({'left': '-472px'});
        jQuery("#contact-btn-div").addClass('close');
   }
});
于 2013-06-06T05:03:25.453 回答