我已經(jīng)設(shè)法使用我需要的名稱創(chuàng)建數(shù)組。根據(jù)用戶對各種 html 元素(按鈕)的點擊,將這些名稱從數(shù)組中推送或刪除。我試圖使用在數(shù)組中收集的值來調(diào)用對類名對應(yīng)/匹配數(shù)組中名稱的 html 元素的更改。我設(shè)法創(chuàng)建了一個函數(shù)來激活一個窗口警報,它允許我查看并驗證我是否能夠循環(huán)遍歷數(shù)組中收集的所有元素。但我被卡住了。我無法弄清楚如何使用數(shù)組中的各個值/名稱來調(diào)用 html 元素的特定類。我試過了:for (var a = 0; a < array.length; a++) { document.getElelemntsByClassName(“.”+array[a]).classList.add(“new”);//and// document.querySelectorAll(“.”+array[a]).classList.add(“new”); //none of them worked. So I wasn’t able to get through to the specific html elements.// window.alert(“.”+array[a]); //This responds properly. I can get multiple alerts, one at the time, with all the names I am expecting to see.//}預(yù)先感謝您的幫助。
如何使用在數(shù)組中找到的類名調(diào)用/編輯所有 html 元素?
炎炎設(shè)計
2021-10-29 13:41:33