我怎样才能做到这一点。
如果target的父级是.form_contact_div,那么console.log('keep open form');
我正在使用的代码,但它不适用于(否则如果)条件仅适用于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');
}
});
答案 0 :(得分:0)
尝试使用此替换a.target,如
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');
}
});
答案 1 :(得分: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');
}
});
});
我想你会得到你需要的东西。干杯:)。