.closest和.find在jQuery中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.closest和.find在jQuery中相关的知识,希望对你有一定的参考价值。
.closest and .find are very useful - surprised I haven't heard of them before.
// Expand Tables $(".expandTable").toggle( function(){ $(this).closest('.tableSection').find('.tradeTable').fadeIn(); }, function(){ $(this).closest('.tableSection').find('.tradeTable').fadeOut(); $(this).closest('.tableSection').find('.arrow').html('→'); } );
以上是关于.closest和.find在jQuery中的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 564. Find the Closest Palindrome
LeetCode Find K Closest Elements