我想获取元素的 id 并将其传递给 jquery 函数 -
$('#fetchedID').fadeOut;
直到现在我已经尝试过 -
1. $("#$('.delete_status').attr('id')").fadeOut(400);
2. var e = $('.delete_status').attr('id');
$(e).fadeOut(400);
我确定我被卡住了,因为在 jQuery 函数中传递 javascript 变量的语法错误。请帮忙。