1

假设我有一个变量:

var $box = $(this).next('widget');

现在说我想让小部件 div 内的另一个 div 淡出。我怎样才能访问 box 变量中的那个 div?

4

1 回答 1

4
var $box = $(this).next('widget');

$box.find('#your_div').fadeOut(); // #your_div is just a selector, 
                                  // you may have something different
于 2012-06-05T09:34:27.263 回答