假设我有一个变量:
var $box = $(this).next('widget');
现在说我想让小部件div中的另一个div淡出。我怎样才能在box变量中访问该div?
答案 0 :(得分:4)
var $box = $(this).next('widget');
$box.find('#your_div').fadeOut(); // #your_div is just a selector,
// you may have something different