jQuery click事件:检查元素是否在父div

时间:2015-07-13 22:25:54

标签: javascript jquery

我正在尝试编写一个click函数来检查父元素是否包含e.target。我尝试使用.not()从另一个$(document).click函数中排除该元素,导致某些不期望的行为,但这不起作用。我也尝试使用.contains(child,parent),但这不能很好地工作,因为它要求子元素不是jQuery或JavaScript对象。我的情况很复杂,因为我的父元素中有多个级别,而且还有更多级别。

以下是我想要做的事情:

$(document).click(function(e) {
    if($.contains($('.dropdown-menu'),$(e.target)) {
        e.stopPropagation();
    } else {
        $('.dropdown-menu').hide();
    }
});

这是我呈现的HTML:

<div class="dropdown">
    <button class="j-descrip-button thin job-dropdown-link" menu="refer">Refer A Friend</button>
    <div class="dropdown-menu right refer-menu" style="display:none;">
        <div class="dd_arrow">
        </div>
        <div class="refer-dropdown-content">
            <form accept-charset="UTF-8" action="/send_refer_a_friend_email" html="{:role=>&quot;form&quot;}" method="post" class="ng-pristine ng-valid">
                <div style="margin:0;padding:0;display:inline">
                    <input name="utf8" type="hidden" value="✓">
                    <input name="authenticity_token" type="hidden" value="{{authenticity_token}}">
                </div>
                <div class="form-group" style="display: none;">
                    <label for="company_name">Company Name</label>
                    <input class="form-control" id="company_name" name="company_name" type="text" value="{{j.company_name}}">
                </div>
                <div class="form-group" style="display:none;">
                    <label for="job_title">Job Title</label>
                    <input id="job_title" name="job_title" value="Python Developer" type="text" class="form-control">
                </div>
                <div style="font-size: 20px; margin-bottom: 10px;">
                    <b>You're an awesome friend!</b>
                </div>
                <div class="form-group">
                    <label for="user_full_name">Your Name</label>  <!-- is this the best way to do this? -->
                    <div>
                        <input class="refer-text-field" id="user_full_name" name="user_full_name" type="text" value="{{current_user_name}}">
                    </div>
                </div>
                <div class="form-group">
                    <span>
                        <label for="friend_email">Your Friend's Email</label>
                        <em style="font-size: 10px;">use commas for multiple emails</em>
                    </span>
                    <div>
                        <input class="refer-text-field" id="friend_email" name="friend_email" type="text">
                    </div>
                </div>
                <div class="prof-link" style="display: none;">
                    <label for="prof_link">Profile Link</label>
                    <input class="form-control" id="prof_link" name="prof_link" type="text" value="{{profile_link}}">
                </div>
                <input class="refer-submit-btn" name="commit" type="submit" value="Send to My Friend(s)">
            </form>
        </div>
    </div>
</div>

2 个答案:

答案 0 :(得分:2)

使用find

$(document).click(function(e) {
    if($('.dropdown-menu').find($(e.target))) {
        e.stopPropagation();
    } else {
        $('.dropdown-menu').hide();
    }
});

我认为你可以使用$(e.target)e.target,没有区别。

答案 1 :(得分:1)

你可以像这样使用父函数,因为它总是一个孩子的东西,你可以检查它是否在body标签中:

list

这是一个工作示例: http://jsfiddle.net/5cjp47c7/

或者,如果你知道父类或id名称是什么,你可以使用它:

$('button').click(function(){
    var x = $(this).parent();
    if (!x.is('body')) {
        console.log("It has it!");
    } else {
        console.log("It does not have it!");
    }
});