function sortAndReturnTextContent() { const items = document.getElementById('myList').children; const parent = document.getElementById('myList') //冒泡排序 for (let i = 0; i < items.length; i++) { for (let j = 0; j < items.length - 1; j++) { ...