JQuery选择所需的类

时间:2014-07-02 11:42:51

标签: jquery

我看起来选择otf_itm类,但我在这个特定的页面中使用了两次。我需要使用标签作为选择otf_itm的根。我已经使用了以下内容并且工作正常但我想检查并确保它是否是在这种情况下使用的最佳做法。

JS:

$("label[for='town_id']").next().children();

HTML:

<div class="form-group">

    <label for="town_id">Town:</label>
    <div class="col-md-3 controls">

        <div class="otf_itm">
            <!-- form items that chagne due to other data -->
        </div>

    </div>

</div>

1 个答案:

答案 0 :(得分:5)

像这样使用

$("label[for='town_id']").next().find(".otf_itm");

find()将搜索任何级别的子元素。而children()将搜索第一级子元素。

在您的情况下,find()children()都可以正常使用。

或者你也可以这样使用,

$("label[for='town_id']").closest(".form-group").find(".otf_itm");

closest()将获得具有指定类

的父级