使用ClassName.onClick JS调用函数
var el = document.getElementsByClassName("elements"); // this element contains more than 1 DOMs.
el.onclick = function() { console.log("target name should be here")};
所以我不想拥有内联JS,我想在函数单击到与任何其他元素具有相同类的特定DOM时触发函数。
有谁能帮帮忙吗?
解决方案
不能将事件侦听器附加到对象数组,因为该函数将返回该数组。
相反,循环遍历返回的列表并将事件侦听器附加到每个项目。
相关文章