📅  最后修改于: 2022-03-11 15:03:51.248000             🧑  作者: Mango
$('#myList > li:first-child');
// or
$('#myList').children('li:first-child');
// or
$('#myList > li').first();
// or
$('#myList').children().first();
// and so on