let myData = 'Manchester,London,Liverpool,Birmingham,Leeds,Carlisle';
现在我们用每个逗号分隔它:
1 2
let myArray = myData.split(','); myArray;
最后,尝试找到新数组的长度,并从中检索一些项目:
1 2 3 4
myArray.length; myArray[0]; // the first item in the array myArray[1]; // the second item in the array myArray[myArray.length-1]; // the last item in the array
var list = document.querySelector('.output ul'); var searchInput = document.querySelector('.output input'); var searchBtn = document.querySelector('.output button');
// 通过循环遍历,显示所有的搜索关键词 for (var i = 0; i < myHistory.length; i++) { var itemText = myHistory[i]; var listItem = document.createElement('li'); listItem.textContent = itemText; list.appendChild(listItem); }
// 如果数组的长度大于 5,那么便移除旧的搜索关键词 if (myHistory.length >= 5) { // number 2 myHistory.pop(); }