📅  最后修改于: 2022-03-11 15:03:07.698000             🧑  作者: Mango
$( "li" ).each( function( index, element ){
console.log( $( this ).text() );
});
// Logs the following:
// Link 1
// Link 2
// Link 3