jQuery   发布时间:2022-04-19  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了jquery – 父对最近大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么这样做:
$('.button_30').click(function(){
    $(this).closest('.portlet').find('.portlet_content').text("foo");
});​

任何为什么这不工作:

$('.button_30').click(function(){
    $(this).parent('.portlet').find('.portlet_content').text("foo");
});​

其中html看起来像这样:

<div class="portlet portlet_30">

    <div class="portlet_header portlet_header_30">
        header content here
    </div>

    <div class="portlet_sub_header portlet_sub_header_30">
        <input type="text" class="textBox_30" />
    </div>

    <div class="portlet_content portlet_content_30">
        results go here
    </div>

    <div class="portlet_footer portlet_footer_30">
        <input type="button" class="button_30" />
    </div>

</div>

<div class="portlet portlet_30">

    <div class="portlet_header portlet_header_30">
        header content here
    </div>

    <div class="portlet_sub_header portlet_sub_header_30">
        <input type="text" class="textBox_30 />
    </div>

    <div class="portlet_content portlet_content_30">
        results go here
    </div>

    <div class="portlet_footer portlet_footer_30">
        <input type="button" class="button_30" />
    </div>

</div>

解决方法

因为 parent()将仅在与指定的选择符匹配时才返回父(立即祖先)。

但是,closest()搜索所有祖先并返回与选择器匹配的第一个

由于button_30的父项是一个div,其父对象是具有portlet类的div,因此parent()函数不匹配,返回一个空集合,其中,最近的()与之匹配。

要完成这个类似的方法,你有parents(),就像nearest(),但不停在第一个匹配的元素;它返回与选择器匹配的所有祖先。

大佬总结

以上是大佬教程为你收集整理的jquery – 父对最近全部内容,希望文章能够帮你解决jquery – 父对最近所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: