当我将字符串数组和索引传递给 onclick 事件时,回调函数从数组的前两个值接收参数作为数字而不是数组和索引。
我尝试使用 Array.from 函数将其转换为数组。
let presentantes = ["28411", "199904", "214966", "16226"];
console.log('presentantes', presentantes);
//presentantes (4) ["28411", "199904", "214966", "16226"]
let id = 1
let listNominated = `<li onClick="cargaPresentantes(${presentantes}, ${i})">`
function cargaPresentantes(presentantes, id) {
console.log('presentantes', presentantes);
console.log('id', id)
//presentantes 28411
//id 199904
}
我期待得到一个数组["28411", "199904", "214966", "16226"]
和索引 1
德玛西亚99
白板的微信
达令说
相关分类