.closest和.find在jQuery中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.closest和.find在jQuery中相关的知识,希望对你有一定的参考价值。

.closest and .find are very useful - surprised I haven't heard of them before.
  1. // Expand Tables
  2. $(".expandTable").toggle(
  3. function(){
  4. $(this).closest('.tableSection').find('.tradeTable').fadeIn();
  5. $(this).closest('.tableSection').find('.arrow').html('↓');
  6. },
  7. function(){
  8. $(this).closest('.tableSection').find('.tradeTable').fadeOut();
  9. $(this).closest('.tableSection').find('.arrow').html('→');
  10. }
  11. );

以上是关于.closest和.find在jQuery中的主要内容,如果未能解决你的问题,请参考以下文章

关于jquery方面的知识点

LeetCode 564. Find the Closest Palindrome

jquery find 获取第一个元素

LeetCode Find K Closest Elements

jQuery中的closest()和parents()的差别

658. Find K Closest Elements