要點:使用select();
上程式碼:
if (e.keyCode === 27){
document.getElementById(`input`).select()
}
//當點選鍵盤esc鍵時候,對input框進行全選。
修改樣式:
document.getElementById(`list`).style = `display: none;`
liDom[nowSelectTipIndex].style.backgroundColor=`green`
innerHTML:
//將生成內容新增到dom中
addContent = function (valueList) {
var ul = ``;
for (item of valueList) {
ul += `<li>${item}</li>`
}
document.getElementById(`list`).innerHTML = ul;
};
//注意可以有html標籤